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!!
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Form_Timer()
Label2.Caption = Mid(Label2.Caption, 2) & left(Label2.Caption, 1)
End Sub