Oi boa tarde coloquei um rotulo com essa instrução
Mais só esta funcionando um vez quando o rotulo retorna o Caption fica em branco alguém pode me ajudar.
Private Sub Form_Open(Cancel As Integer)
DoCmd.Restore
Me!msg.Width = 0
Me.msg.Left = Me.WindowWidth
wFrase = Me!msg.Caption
End Sub
Private Sub Form_Timer()
If Me!msg.Left <= 50 Then
If Len(Me!msg.Caption) > 1 Then
Me!msg.Caption = Right(Me!msg.Caption, Len(Me!msg.Caption) - 1)
Else
Me!msg.Width = 0
Me!msg.Left = Me.WindowWidth
Me!msg.Caption = wFrase
End If
Else
Me!msg.Left = Me!msg.Left - 50
Me!msg.Width = Me!msg.Width + 50
End If
Mais só esta funcionando um vez quando o rotulo retorna o Caption fica em branco alguém pode me ajudar.
Private Sub Form_Open(Cancel As Integer)
DoCmd.Restore
Me!msg.Width = 0
Me.msg.Left = Me.WindowWidth
wFrase = Me!msg.Caption
End Sub
Private Sub Form_Timer()
If Me!msg.Left <= 50 Then
If Len(Me!msg.Caption) > 1 Then
Me!msg.Caption = Right(Me!msg.Caption, Len(Me!msg.Caption) - 1)
Else
Me!msg.Width = 0
Me!msg.Left = Me.WindowWidth
Me!msg.Caption = wFrase
End If
Else
Me!msg.Left = Me!msg.Left - 50
Me!msg.Width = Me!msg.Width + 50
End If