Error 340 en tiempo de ejecución.
Tengo un programa, que se encarga de calificar una prueba escrita, en un formulario me da error 340 en tiempo de ejecución, el elemento 7 de la matriz de controles no existe. Este es el código que me el error,
Private Sub Text1_Change(Index As Integer)
If Index > -1 And Index < 8 Then
If Text1(Index).Text = "" Or Text1(Index).Text = "" Then Exit Sub
Label(Index).Width = Text1(Index).Text * 100
End If
End Sub
Private Sub Text1_Change(Index As Integer)
If Index > -1 And Index < 8 Then
If Text1(Index).Text = "" Or Text1(Index).Text = "" Then Exit Sub
Label(Index).Width = Text1(Index).Text * 100
End If
End Sub
1 Respuesta
Respuesta de Luis_P
1
Perdona, Luis_P, pero el error debe ser otro. Index >-1 es equivalente a Index>=0. Es lógica pura. - Sergio Peris