Results 1 to 2 of 2

Thread: Picture Box Scrolling Text

  1. #1

    Thread Starter
    New Member
    Join Date
    Feb 2007
    Posts
    8

    Picture Box Scrolling Text

    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

  2. #2
    Frenzied Member
    Join Date
    Jun 2006
    Posts
    1,098

    Re: Picture Box Scrolling Text

    The easiest way would probably be to use a label with transparent background.
    VB Code:
    1. Private Sub Timer1_Timer()
    2.   Dim NewLeft As Single
    3.  
    4.   NewLeft = Label1.Left + 10
    5.   If NewLeft > Picture1.ScaleWidth Then NewLeft = 0
    6.   Label1.Move NewLeft
    7. End Sub

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width