Private Sub CommandButton1_Click()
num = Range("A1").End(xlDown).Row + 1
Cells(num, 1) = TextBox1.Text
Cells(num, 2) = TextBox2.Text
Cells(num, 3) = TextBox3.Text
Cells(num, 4) = TextBox4.Text
Cells(num, 5) = TextBox5.Text
Cells(num, 6) = TextBox6.Text
Cells(num, 7) = TextBox7.Text
Cells(num, 8) = TextBox8.Text
Cells(num, 9) = TextBox9.Text
End Sub
不知道該怎麼修改