Private Sub ListBox1_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
Cells(ListBox1.ListIndex + 1, 1).Select
TextBox1 = ListBox1.List(ListBox1.ListIndex, 0)
TextBox2 = ListBox1.List(ListBox1.ListIndex, 1)
TextBox3 = ListBox1.List(ListBox1.ListIndex, 2)
TextBox4 = ListBox1.List(ListBox1.ListIndex, 3)
End Sub
Private Sub CommandButton7_Click()
Rows(ListBox1.ListIndex + 2).Insert Shift:=xlDown
End Sub