Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VBA code for Scrolling Marquee in Access form

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I need to know the VBA code for a scrolling marquee in a form in Access. It doesn't need to be very complex, just make the text scroll across the page. I need it ASAP!!! Thanks!!
 
In the form, set the timer interval to something. I would suggest 100 to 250 (milliseconds).

Add the following code to the FORM module.


Code:
Private Sub Form_Timer()
    Label2.Caption = Mid(Label2.Caption, 2) & left(Label2.Caption, 1)
End Sub
MichaelRed
mred@att.net

There is never time to do it right but there is always time to do it over
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top