Error de compilación
Publicado por Gabriel (1 intervención) el 22/11/2017 17:45:06
Estimados,
Podrían ayudarme, he realizado el siguiente código y me sale error de compilación: No se ha definido Sub o Function.
Podrían ayudarme, he realizado el siguiente código y me sale error de compilación: No se ha definido Sub o Function.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Private Sub CommandButton1_Click()
If TextBox1.Value = "" Or TextBox2.Value = "" Then
MsgBox "Por favor ingresar usuario y clave", 16, "Faltan datos"
ElseIf Match(TextBox1.Value, Tabla1(Usuario), 0) = 1 Then
Label11.Visible = False
Else
Label12.Visible = False
End If
End Sub
Valora esta pregunta
0