ngh_khanh
Thành viên mới
- Tham gia
- 14/2/11
- Bài viết
- 45
- Được thích
- 25
Em có 1 ví dụ này, nhờ AC xem và hoàn thiện thêm dùm cho em code viết:
PHP:
Private Sub CommandButton1_Click()
Dim i As Long
With S1
i = .Range("A65535").End(xlUp).Row
.Cells(i + 1, 1).Value = Me.txtNgay 'dong nay phai thiet lap ngay the nao cho dung!?
.Cells(i + 1, 2).Value = Me.txtCtu
.Cells(i + 1, 3).Value = Me.txtNgayCtu 'dong nay phai thiet lap ngay the nao cho dung!?
.Cells(i + 1, 4).Value = Me.cbMa
.Cells(i + 1, 5).Value = Me.txtdiengiai
.Cells(i + 1, 6).Value = Me.txtTK
.Cells(i + 1, 7).Value = Me.txtTien 'dong nay phai thiet lap phan biet hang ngan the nao cho dung!?
Me.txtNgay.Value = ""
Me.txtCtu.Value = ""
Me.txtNgayCtu.Value = ""
Me.cbMa.Value = ""
Me.txtdiengiai.Value = ""
Me.txtTK.Value = ""
Me.txtTien.Value = ""
End With
Me.txtNgay.SetFocus
End Sub