View Single Post
Old 12-16-2004, 12:25 PM   #6 (permalink)
kebo
Tilted
 
kebo's Avatar
 
Location: reno,nv
on a new form, put label1 then use the following code
Code:
Option Explicit

Const LABEL_WIDTH = 15 'characters
Dim j As Integer
Dim s As String
Private Sub Form_Load()
    s = Space$(LABEL_WIDTH) & "Have a great day" & Space$(LABEL_WIDTH)
    j = 1
    Timer1.Interval = 100
    Timer1.Enabled = True
    Me.Show
End Sub

Private Sub Timer1_Timer()

    Label1.Caption = Mid(s, j, LABEL_WIDTH)
    j = j + 1
    If j = Len(s) - LABEL_WIDTH - 1 Then j = 1
End Sub
for this to work correctly, you need to use fixed width font (like Courier) and you need to know how many characters wide the label is
HTH
kevin
kebo is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47