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", _...
What is this "Sleep" 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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.