I think I know. Scroll..like credits?
Code:Private Sub Form_Load() msg$ = "This is a simple Marquee example." & vbCrLf msg$ = msg$ & "You can make something 100 times better." MsgBox msg$, vbYes, "Marquee Example of Scrolling Text" Label1.Visible = True Label1.Enabled = True Form1.Enabled = True Label1.Caption = Date Label1.Left = 0 Label1.Top = 1800 Label1.Height = 255 Label1.Width = 1195 Command1.Top = 2400 Command1.Left = 0 Command1.Height = 375 Command1.Width = 6705 Command1.Caption = "Exit Example" Command1.Enabled = True Command1.Visible = True Form1.Height = 3225 Form1.Width = 6810 Timer1.Enabled = True Timer1.Interval = 1 End Sub Private Sub Timer1_Timer() If Label1.Left < -1000 Then Label1.Left = 7000 Else Label1.Left = Val(Label1.Left) - 40 End If End Sub Private Sub Command1_Click() 'will give user a Yes or No prompt in which they wish to exit Dim x As Integer x = MsgBox("Are you sure you want to exit?", vbYesNo, "Exit") If x = 6 Then End End If End Sub




Reply With Quote