Boa tarde amigos
Estou a tentar corrigir o erro 13 conforme "On Error GoTo TrataErro" abaixo, mas não está a resultar.
Alguém tem uma ideia ??
Private Sub Form_Current()
On Error GoTo TrataErro
If Me.Texto42.Value < 0 Then
Me.Texto42.Visible = False
ElseIf Me.Texto42 > 0 Then
Me.Texto42.Visible = True
End If
TrataErro:
If Err.Number = 13 Then
Resume Next
End If
End Sub
Estou a tentar corrigir o erro 13 conforme "On Error GoTo TrataErro" abaixo, mas não está a resultar.
Alguém tem uma ideia ??
Private Sub Form_Current()
On Error GoTo TrataErro
If Me.Texto42.Value < 0 Then
Me.Texto42.Visible = False
ElseIf Me.Texto42 > 0 Then
Me.Texto42.Visible = True
End If
TrataErro:
If Err.Number = 13 Then
Resume Next
End If
End Sub