Results 1 to 6 of 6

Thread: [RESOLVED] form caption title move & move??

Threaded View

  1. #1

    Thread Starter
    Addicted Member cxj98's Avatar
    Join Date
    Feb 2007
    Posts
    170

    Resolved [RESOLVED] form caption title move & move??

    does everybody who can provide source code let me know how to make form caption title move & move??

    add a timer control to count it moving.

    caption title from left side move to right side, then form right side move to left side. repeat and repeat.

    thanks!

    here is small example which is title run & run, but I need it move & move.:

    Code:
    Public tit1 As String
    
    Private Sub Form_Load()
    tit1 = "This title can run and run!..........    "
    Form1.Caption = title1
    Timer1.Interval = 200
    End Sub
    
    Private Sub Timer1_Timer()
    L = Len(tit1)
    tit1 = Mid(tit1, 2, L - 1) + Left(tit1, 1)
    Form1.Caption = tit1 
    End Sub
    Last edited by cxj98; Jun 1st, 2007 at 07:16 PM.

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