Hello Dimitris,
You did great on this DLL, indeed. Compliments!
Quick question please, dzHW.dll creates a number of objects in Tools/Add Object, such as MyComputer, MyApplication, MyProject, etc.
Please forgive my curiosity, what are these for?
Thanks to your DLL, I put together a precise Delay routine with DoEvents
Sub Delay (ms)
elapse = 0
begin = dz.GetTickCount
do While (elapse < ms)
DoEvents
elapse = dz.GetTickCount - begin
Loop
End Sub
|