velox
Retired
Hi, i want to make the text scroll down the form, but the whole text box is scrolling, anyone know how to scroll just the text? And also how to make text boxes only accept numbers. Thanks
Private Sub cmdclose_Click()
frmabout.Hide
End Sub
Private Sub Timer2_Timer()
If txtcredits.Top < Me.Height - Me.Height - txtcredits.Height Then
txtcredits.Top = Me.Height - 1
txtcredits.Top = txtcredits.Top - 25
Else
txtcredits.Top = txtcredits.Top - 25
End If
End Sub
Private Sub cmdclose_Click()
frmabout.Hide
End Sub
Private Sub Timer2_Timer()
If txtcredits.Top < Me.Height - Me.Height - txtcredits.Height Then
txtcredits.Top = Me.Height - 1
txtcredits.Top = txtcredits.Top - 25
Else
txtcredits.Top = txtcredits.Top - 25
End If
End Sub