-
I need to be able to return frames from the system time. There are 29.97 frames per second, for you guys who aren't into the video world.;) I don't expect to be able to get frames directly from the system time, but at least if I could get the current 1/100 of a second, or something like that, I could do a calculation. Does anybody know how to get this kind of accuracy from the system time? Maybe an API or something?
Thanks!
______
Bob K.
-
Hey guys...
I found the answer. It's an API call called GetLocalTime. It returns the current date and time accurate to the millisecond (I hope, anyways!)
Thanks anyways.
______
Bob K.
-
try this API call
Code:
Private Declare Function GetTickCount Lib "kernel32" () As Long
-