EXCEL VBA, me sale error Run-time error `2147417848
Que tal tengo un código la cual se basa en que cuando tengo un cambio en un textbox, en este caso agregue con un lector un código, este código sea buscado en otra hoja y que me lo muestre en distintos labels, para que se pegue en otra hoja como base de datos, el problema es que tengo un combo box en cual selecciono antes de leer un código con el lector, primero selecciono se podría llamar un status, y voy leyendo códigos con el lector y automáticamente se van agregando en la tabla por orden, el problema es que cuando quiero cambiar de valor en el combo text me muesta un error.
Run-time Error `2147417848 (80010108)
Automation Error
The Object invoked has disconnected from its clients.
Ayuda por favor, le voy a adjuntar mi codigo de todo el form
Private Sub Cerrar_Click()
Unload Me
End Sub
Private Sub TrackingLabel_Change()
Set h1 = Sheets("Insert_Sheet")
Set h2 = Sheets("Actualizacion - Control de Entr") 'hoja donde se copian los datos
Valor = TrackingLabel.Value
If Valor = "" Then Exit Sub
'
Set b = h1.Columns("A").Find(Valor, lookat:=xlWhole)
If Not b Is Nothing Then
MensajeroLabel.Caption = h1.Cells(b.Row, "B")
ClienteLabel.Caption = h1.Cells(b.Row, "E")
ProductoLabel.Caption = h1.Cells(b.Row, "C")
TCLabel.Caption = h1.Cells(b.Row, "D")
CedulaLabel.Caption = h1.Cells(b.Row, "F")
'
fila = h2.Range("A" & Rows.Count).End(xlUp).Row + 1
serie = WorksheetFunction.Max(h2.Range("A2:A" & fila - 1)) + 1
h2.Cells(fila, "A") = serie
h2.Cells(fila, "B") = FechaLabel.Caption
h2.Cells(fila, "C") = USERONLINE.Caption
h2.Cells(fila, "D") = MensajeroLabel.Caption
h2.Cells(fila, "E") = ClienteLabel.Caption
h2.Cells(fila, "F") = TCLabel.Caption
h2.Cells(fila, "G") = CedulaLabel.Caption
h2.Cells(fila, "H") = EstatusLabel.Value
h2.Cells(fila, "I") = TrackingLabel.Value
Else
blog = Error
MsgBox "Tracking no encontrado", vbExclamation, blog
End If
TrackingLabel = Empty
End Sub
'Verificacion de usuario editor
Private Sub UserForm_Initialize()
USERONLINE.Caption = Worksheets("BD").Range("G2").Value
FechaLabel = Format(Date, "DD/MM/YYYY")
End Sub