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 biv343 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. JeffAtBDK

    Utility to find VB program differences

    Thanks folks. Lots to consider.
  2. JeffAtBDK

    Utility to find VB program differences

    Is there a utility out there that I can use to find the differences to two different VB programs.
  3. JeffAtBDK

    Creating hex values w/ consistant zero padding

    Enjoy Function HexPad(Value As Long, Width As Integer) As String Select Case Width Case Is = 8 HexPad = IIf(Value < 16, "0", "") & Hex$(Value) Case Is = 16 HexPad = IIf((Value < 16), "000", _ IIf((Value < 256), "00", _...
  4. JeffAtBDK

    DoEvents, Sleep (Kernel32) &amp; Asynchonrous Tasks

    What is this &quot;Sleep&quot; command you are referring to? I have a command line app that I shell to from VB that must complete before VB continues. I solved that with some code recommendations from this forum. The problem is that the shelled to program is a communication app and has...
  5. JeffAtBDK

    Browse Folder Control in vb6?

    Yamjan, Your code works great but now I need to be able to create new folders from the same browser.

Part and Inventory Search

Back
Top