Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Niv3k
  • Order by date
  1. Niv3k

    General: .NET CF and C# Standard?

    I have written a small program for Windows CE and Pocket PC devices, using embedded Visual Tools. I want to upgrade this app to .NET CF. What I want to know is: Can you purchase C# .NET Standard and then add in the compact framework, or is the ONLY way to develop with the compact framework by...
  2. Niv3k

    Show list of folders...

    Awesome! I haven't typed it in yet, but it appears to be exactly what I'm looking for... Thanks, billchris! Kevin
  3. Niv3k

    Show list of folders...

    Is there some control that corresponds to the FileDialog control, except with folder listings only? Or do I have to create my own, using say, a tree view? If that's the case, how do I get things like My Documents and My Computer and My Network Places? Kevin
  4. Niv3k

    "Pause" as stroed proc?

    Is there anyway to pause a stored procedure while waiting for user input? For example, I have a business rule that prohibits finalizing transactions that don't match the bill amount. But we have a new client company where they will accept $1 under or $500 over. Sometimes. We have to ask...
  5. Niv3k

    Bring flat file to relational database

    so THATS what the union operator does... Boy this would've come in handy years ago. Thanka! Kevin
  6. Niv3k

    Bring flat file to relational database

    I have a flat file that has several non-relational fields, such city_due_1, city_due_2, city_due_3, city_due_4. There is also garbage 1-4, sewer 1-4, and water 1-4. I would like to normalize this a little by bringing these fields into their own seperate tables, for example: bill_num int...
  7. Niv3k

    How much programming can I eliminate with my select

    Use a CAST or CONVERT with the SUM, to make it an int, or a better way is to use the datediff function: SUM(DATEDIFF(minute, startdate, enddate)) This will give you the breakdown in minutes, which is good because if you use datediff with hours, it might round down .25 hours, so some employees...
  8. Niv3k

    Problem using OLEDB to access SQL Server via widearea network

    I think that you may have some firewall or VPN issues. have you check all the ports that SQL server uses, and that you can actually communicate through them from office to office? Kevin
  9. Niv3k

    How much programming can I eliminate with my select

    I'm sure what you want to do is possible, but I would need more information on the table layout.... Kevin
  10. Niv3k

    Change Path of data and log files

    Why don't you detach the database, move the files to the new location, and then re-attach them? Kevin
  11. Niv3k

    ALTERing Column Names

    I'm not sure if you can rename a column using ALTER, but couldn't you create an updatable view using an Alias? Example: SELECT F_Name AS First, L_Name AS Last FROM Names Kevin
  12. Niv3k

    "Paste" text directly to notepad

    Also, thanks, vb5prgrmr, because SetWindowText does not work under other applications edit windows, thus I have to rely on messages... Kevin
  13. Niv3k

    "Paste" text directly to notepad

    aaaaarrrgh! I always forget to do something simple, such as: WaitForInputIdle pi.hProcess, INFINITE Once I did that, I was able to get the handles with GetGUIThreadInfo! Thanks, LazyMe. Kevin
  14. Niv3k

    "Paste" text directly to notepad

    Yeah, that would work if knew the handle of the window. That's what I can't find.
  15. Niv3k

    "Paste" text directly to notepad

    Okay, here is the hack, but I'm really not happy with it written this way: Clipboard.SetText Text1 Shell "Notepad.exe", vbNormalFocus SendKeys Clipboard.GetText What I would like to do is use the SetWindowText function to put certain text directly into notepad, instead of sendkeys...
  16. Niv3k

    Distributing a small application with minimum package size.

    Well, you have to keep in mind that your users will probably need to have at least one .dll included with your package: msvbvm60.dll, the VB runtimes. Then any other references in your project will also get added with the wizard, and any other .OCX's (ActiveX controls, or Components) will be...
  17. Niv3k

    I have several lines of code in a p

    Perhaps in Access, I think Size is a reserved keyword and you should refer to it as [Size] instead... Kevin
  18. Niv3k

    file system object, for...each

    I'm baffled. On Form1, I have the following lines of code: Private Sub Form_Activate() Dim fso As New FileSystemObject Dim fld As Folder Dim fil As File Set fld = fso.GetFolder("C:\Temp") For Each fil In fld.Files Me.Caption = fil.Name DoEvents...
  19. Niv3k

    Update Group of Records??

    update projectcustid set timerecstatus='c' from ((timerec left join task on taskid=timerectaskid) left join story on task.storyid=story.storyid) left join project on project.projectid=story.projectid where timerecstatus='n' and projectcustid='wgs'
  20. Niv3k

    dts animations from VB

    Has anyone ever replicated the form that shows the neat animations when you run a dts package from the Enterprise manager for use with VB packages? I want to show the status of the imports (several are done every day), and that is just a really neat form... If anyone has any information on...

Part and Inventory Search

Back
Top