Results 1 to 4 of 4

Thread: Scrolling Text

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Jan 2000
    Location
    cardiff
    Posts
    17

    Post

    Can anyone offer me a solution to a problem I need to scroll text repeatedly in a text box.

    many thanks

    Valley Boy

  2. #2
    Junior Member
    Join Date
    Feb 2000
    Posts
    23

    Post

    Hi, here you can download an ocx of a scrolling text, maybe you can use it.
    http://www.stringsoft.com/scroltxt.zip


    ------------------
    It is by will alone I set my mind in motion.

    [email protected]

  3. #3
    Member
    Join Date
    Jan 2000
    Location
    South-Africa
    Posts
    46

    Post

    You need a timer control.
    Enable the timer.

    Code:
    Private Sub tmrClosed_Timer()
    
        'Move 60 twips to the right with each tick
        lblClosed.Left = lblClosed.Left + 30
            'Check to see if we have moved off of the form
            If lblClosed.Left > 2930 Then lblClosed.Left = 0
    
    End Sub


  4. #4

    Thread Starter
    Junior Member
    Join Date
    Jan 2000
    Location
    cardiff
    Posts
    17

    Post

    Thanks but the words run left to right i need them running right to left

    [This message has been edited by Valley Boy (edited 02-14-2000).]

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