View Single Post
Join Date: Aug 2007
Posts: 570
Reputation: ryan_vietnow is an unknown quantity at this point 
Solved Threads: 71
ryan_vietnow's Avatar
ryan_vietnow ryan_vietnow is offline Offline
Posting Pro

Re: Marquee or Scrolling Text message in Statusbar using VB6

 
0
  #2
Oct 30th, 2007
use a timer to move your text.

put this inside your timer event.

label1.left=label1.left + 1

if label1.left = (*to where you want the marquee to be e.g. 500) then

label1.left=(*label1.left before you start for example 5)

end if

just set your timer1.enabled=1,ok?
Reply With Quote