Guys, Does anyone know 1) how precise the vb6 Date date type is (by way of fractions of a second) and how to format it to show fractions of a second.
I'm revisiting vb6 after many years absence, and for the life of me can't remember. The things I used to know . . .
Thanks
P.S. I considered putting a "memory-leak" tag on this, because my memory leaked (hur hur hur)
P.P.S I Found this API call after wards, and it seems to work
Declare Sub GetSystemTime Lib "kernel32.dll" (lpSystemTime As SystemTime)
Public Type SystemTime
Year As Integer
Month As Integer
DayOfWeek As Integer
Day As Integer
Hour As Integer
Minute As Integer
Second As Integer
Milliseconds As Integer
End Type