-
For this mp3 player im making i have 3 images that are for the songs current position. Like a bar with a rectange that moves along to how much of the song has been played, and following that rectangle i have another images width chaning with the movement of the rectange. All this works fine but it flickers like crazy. Does it matter how many timers you use, like if you use a different timer for each function on your form, or if you just used one time. Would having more timers running slow down the form at all , or having one timer with alot of code slow it down? Also, would this help with the flickering, and if not, how can i fix that?
-
I bet you have a SOMETHING.Refresh in your code, and I bet it is in a bad place, like the end of the timer event. Try moving it to the beginning of the Timer event. That worked once for me.
Also, it probably doesn't need to refresh often for some parts, but faster for others, so go ahead and divide up the code into one or two separate timers depending on the speed you want. Make it just slow enough to work.
good luck,
bob