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 Shaun E 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: JeffAtBDK
  • Content: Threads
  • Order by date
  1. 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.
  2. 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", _...

Part and Inventory Search

Back
Top