Error al hacer click en listbox
Ten un código para que al hacer click en un list box se refleje la información en todos los controles de mi formulario pero me esta arrojando el error que ven en la imagen como puedo corregirlo? Este formulario funcionaba bien algo modifique sin darme cuenta.
Private Sub ListBox1_Click() With ListBox1 If .ListIndex = -1 Then Exit Sub TextBox1 = .List(.ListIndex, 2) TextBox8 = CDate(.List(.ListIndex, 2)) 'FECHA DE ENTREGA TextBox9 = Format(.List(.ListIndex, 3), "hh:mm:ss am/pm") 'HORA DE ENTRGA TextBox15 = CDate(.List(.ListIndex, 17)) 'Fecha devolución TextBox14 = Format(.List(.ListIndex, 18), "hh:mm:ss am/pm") 'Hora devolución TextBox10 = CDate(.List(.ListIndex, 19)) 'Fecha recepción corrección TextBox11 = Format(.List(.ListIndex, 20), "hh:mm:ss am/pm") 'Hora recepcion corrección TextBox12 = CDate(.List(.ListIndex, 22)) 'Fecha entrega GC TextBox13 = Format(.List(.ListIndex, 23), "hh:mm:ss am/pm") 'Hora entrega GC TextBox16 = .List(.ListIndex, 21) 'Transito correccion TextBox17 = .List(.ListIndex, 24) 'Transito total TextBox18 = "Registrado por:" & " " & .List(.ListIndex, 7) & " " & "Modicado por:" & .List(.ListIndex, 27) ' Registro de modificaciones TextBox2 = .List(.ListIndex, 15) 'OBSERVACIONES ComboBox1 = .List(.ListIndex, 5) 'PRODUCTO1 Controls(.List(.ListIndex, 6)) = True Controls(.List(.ListIndex, 4)) = True Controls(.List(.ListIndex, 16)) = True TextBox3 = .List(.ListIndex, 8) 'DESV 1 TextBox4 = .List(.ListIndex, 9) 'DESV 2 TextBox5 = .List(.ListIndex, 10) 'DESV 3 TextBox6 = .List(.ListIndex, 11) 'DESV 4 TextBox7 = .List(.ListIndex, 12) 'DESV 5 If .List(.ListIndex, 13) = "1" Then Devuelto.Value = True Else Devuelto.Value = False If .List(.ListIndex, 14) = "1" Then RNC.Value = True Else RNC.Value = False End With End Sub
1 Respuesta
Respuesta de Dante Amor
1