Private Sub ListBox1_Click()
If ListBox1.ListCount < 1 Then Exit Sub
Cells(ListBox1.Column(1), "C").Select
TextBox1 = ActiveCell.Offset(0, 0)
TextBox2 = ActiveCell.Offset(0, -1)
TextBox3 = ActiveCell.Offset(0, 1)
TextBox4 = ActiveCell.Offset(0, -2)
TextBox4.Enabled = False
End Sub