Anyone know of any good ticker controls for vb?
Printable View
Anyone know of any good ticker controls for vb?
If you need control for counting miliseconds,
you can use instead Windows API function : GetTickCount()
Declare Function GetTickCount Lib "kernel32" Alias "GetTickCount" () As Long
__________________________
Start=GetTickCount()
...
...
some code
...
End=GetTickCount()
Result = End - Start
___________________________
"Patrick" <phusting@hotmail.com> wrote:
>
>Anyone know of any good ticker controls for vb?