Quote Originally Posted by boops boops View Post
Thanks. Nothing to see there, unfortunately, except the timer interval is set to 1000 which might account for the slowness on your other machine. The bouncing must be something to do with the image. I wonder whether it could be the pixel resolution? I saved the image with the default resolution (on my computer) of 120*120, but it might be a different default on your system. Would you please try changing the last line of the Paint sub to this:
Code:
        e.Graphics.DrawImage(rotaryImage, New RectangleF(drawLocation, rotaryImage.Size))
It's an overload of the DrawImage method that isn't affected by the pixel resolution. Does it fix the bouncing problem?

BB
forgot to ask, how would i change the color? another line of code in the Paint Sub?