Jobs
Author: Aries_Tranate(Bataan) Date Submitted: 5/3/2005 Category: Forms Compatibility: VB 6 This code has been accessed 4478 times.
Email Yourself this snippet:
"none" "put a timer on your form and a text or label" "for more simple code or if you want a system to make in visual basic "contact me at my mobile number 09196808745 / 047-791-5029" "or email me at yoh_asakura_Aries@yahoo.com
Code
Private Sub Form_Load() Label1.Caption="Aries Tranate " scrolltimer.Enabled = True scrolltimer.Interval = 100 End Sub Private Sub scrolltimer_Timer() Label1.Caption = Right(Label1.Caption, Len(Label1.Caption) - 1) + Left(Label1.Caption, 1) End Sub