Is it possible to have scrolling text over a picture box which is already displaying an image? So the text will scroll over top of the image.
Thanks :)
Printable View
Is it possible to have scrolling text over a picture box which is already displaying an image? So the text will scroll over top of the image.
Thanks :)
The easiest way would probably be to use a label with transparent background.
VB Code:
Private Sub Timer1_Timer() Dim NewLeft As Single NewLeft = Label1.Left + 10 If NewLeft > Picture1.ScaleWidth Then NewLeft = 0 Label1.Move NewLeft End Sub