Creación de formulario en VB
Estoy creando un formulario y al ejecutarlo. Lleno los campos y al registrar, me aparece un error '1004' Error en el método Insert de la clase Range. Anexo los datos. De antemano muchas gracias por el apoyo. Saludos
Private Sub cmdRegistrar_Click()
ActiveSheet.Cells(2, 2).Select
Selection.EntireRow.Insert
ActiveSheet.Cells(2, 2) = txtFecha
ActiveSheet.Cells(2, 3) = txtID
ActiveSheet.Cells(2, 5) = txtFalla
ActiveSheet.Cells(2, 6) = txtAtiende
ActiveSheet.Cells(2, 8) = txtHora
ActiveSheet.Cells(2, 7) = txtReportador
ActiveSheet.Cells(2, 8) = txtArea
ActiveSheet.Cells(2, 9) = txtSolucion
ActiveSheet.Cells(2, 10) = txtNotas
txtFecha = Empty
txtID = Empty
txtFalla = Empty
txtAtiende = Empty
txtHora = Empty
txtReportador = Empty
txtArea = Empty
txtSolucion = Empty
txtNotas = Empty
txtFecha.SetFocus
End Sub