hi hould should i make a text blink in vb6 help please
VB Code: Private Sub Form_Load() Label1.Caption = "NAVI's TEXT" With Timer1 .Interval = 500 .Enabled = True End With End Sub Private Sub Timer1_Timer() Label1.Visible = Not Label1.Visible End Sub
Private Sub Form_Load() Label1.Caption = "NAVI's TEXT" With Timer1 .Interval = 500 .Enabled = True End With End Sub Private Sub Timer1_Timer() Label1.Visible = Not Label1.Visible End Sub
Forum Rules