Postada em 04/03/2008 16:44 hs
Option Explicit
Private m_strTexto As String Private m_intI As Integer
Private Sub Form_Load() m_strTexto = "Isto é um texto" m_intI = 0 End Sub
Private Sub tmrTempo_Timer() If lblTexto.Caption = "Isto é um texto" Then lblTexto.Caption = "" m_intI = 0 Else m_intI = m_intI + 1 lblTexto.Caption = Mid(m_strTexto, 1, m_intI) End If End Sub
e coloca o Interval do Timer para 100 (tempo em Ms)
|