In VB6 if I have a timer to move a form:
Code:
mfrmForm.Left = mfrmForm.Left + 1
...and I set the interval of the timer to 1, then the form flys off the screen. VERY fast.

If I do the same in .NET then it moves slowly...not THAT slowly...but slower than a form in VB6 would if the timer was set to 30ms!

I have used standard timer, and the component timer, but this has not made any difference.

Any ideas?

Woka