dmtdmtbb
Biệt danh: xDelx
- Tham gia
- 24/5/07
- Bài viết
- 306
- Được thích
- 438
- File gốc này của bác Mr.Okelab, xin bác chỉ dùm cách lấy thêm cột cho ComboBox là 3 hay 4 ...
View attachment Combobox.zip
View attachment Combobox.zip
Private Sub CBViDu_Change()
On Error GoTo thoat
If S01.CBViDu.Value <> "" Then
ActiveCell.Offset(0, 1).Value = S01.CBViDu.Column(1) ' O ben canh lay gia tri o cot thu 2
ActiveCell.Offset(0, 2).Value = S01.CBViDu.Column(2)
End If
thoat: Exit Sub
End Sub
Private Sub CommandButton1_Click()
S01.Range("A2:F200").ClearContents
Range("E1").Select
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
On Error GoTo thoat
Dim MH As Boolean
MH = Application.EnableEvents
Application.EnableEvents = False
If Target.Row > 1 Then
If Target.Column = 1 Then
Call thaydoi
Call MaKH
ElseIf Target.Column = 4 Then
Call thaydoi
Call MaTK
Else
Call Hide
End If
End If
thoat: Application.EnableEvents = MH
End Sub
ActiveCell.Offset(0, 2).Value = S01.CBViDu.Column(2)
ElseIf Target.Column = 4 Then
Gọi đúng tên nhé, không người ta tủi thân người ta khóc bây giờ .. . . .!dmtdmtbb đã viết:- File gốc này của bác Mr.Okelab, xin bác chỉ dùm cách lấy thêm cột cho ComboBox là 3 hay 4 ...
View attachment 2647
TUANVNUNI đã viết:Mr Okebab xem vấn đề này rồi giải quyết nhé.
Vị trí của các combo không bám theo ActiveCell. Nếu con trỏ di chuyển từ các cột khác thì combo bám đúng ActiveCell, còn nếu di chuyển các dòng trên cùng một cột thì vị trí của combo bị sai.
Nguyên văn bởi Mr Okebab
Gọi đúng tên nhé, không người ta tủi thân người ta khóc bây giờ .. . . .!
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
On Error GoTo thoat
Dim MH As Boolean
MH = Application.EnableEvents
Application.EnableEvents = False
If Target.Row > 1 Then
If Target.Column = 1 Then
Call Hide
Call thaydoi
Call MaKH
ElseIf Target.Column = 4 Then
Call Hide
Call thaydoi
Call MaTK
Else
Call Hide
End If
End If
thoat: Application.EnableEvents = MH
End Sub
ttphong2007 đã viết:To Mr.Okebab, File này mình đã sửa lại lỗi như Hiếu nói. Mấu chốt là ở đây:
TP.