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 SkipVought 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: *

  1. Bob26i

    Find File

    Explorer.exe on my machine
  2. Bob26i

    Problem with XML, VMWare and Chr$(0)

    Oops, forgot to mention. The files are actually saved the same in VMWare versus Win2K (was able to find that out yesterday). But it can't Sort in VMWare, and it can in Win2K.
  3. Bob26i

    Problem with XML, VMWare and Chr$(0)

    Thanks, Chip. But it's not happening at the end of the file, but in the middle. And VMWare is only cool until you have to use it every day. I can't tell you how often my hard drive has spent minutes grinding simply because I've got a VMWare session open. However, I've been able to catch up...
  4. Bob26i

    Runtime Error 440 , Automation Error

    I know that error very well. It's caused by poorly formed SQL usually. Put in a break point and print out your SQL and see if it would work on Access.
  5. Bob26i

    Incrementing Letters: A -> B , Z -> AA , AB -> AC... Best Way?

    I would take a more mathematical approach to this problem. Function ValOfString(s as String) As Long 'No error trapping, I'll leave that to you Dim i as integer, lAnswer as long lAnswer = 0 'Sorry, I also program in C, so this is a habit For i = Len(s) to 1 step -1 lAnswer =...
  6. Bob26i

    Problem with XML, VMWare and Chr$(0)

    Can someone help me? I've got a program that uses the Save and Open methods of the ADODB.Recordset object to save data to an XML file and later on read it. When we run the program on Win2K, it works perfectly. But when we run the program on Win2K through a VMWare session, it bombs with an...

Part and Inventory Search

Back
Top