- Tham gia
- 17/8/08
- Bài viết
- 8,662
- Được thích
- 16,720
- Giới tính
- Nam
File có 2 Form, mỗi Form có đoạn code:
Userform1:
Userform2:
Khi bấm nút thoát (X) của Form1, nó mở Form2, nhưng khi bấm nút thoát (X) của Form2 thì báo lỗi.
Xin cho hỏi tại sao và cách khắc phục!
Chân thành cảm ơn!
Userform1:
PHP:
Dim closeForm As Boolean
Private Sub CommandButton1_Click()
closeForm = False
Unload Me
End Sub
Private Sub UserForm_Initialize()
closeForm = True
End Sub
Private Sub UserForm_QueryClose(Cancel As Integer, CloseMode As Integer)
If closeForm = True Then UserForm2.Show
End Sub
Userform2:
PHP:
Dim closeForm As Boolean
Private Sub CommandButton1_Click()
closeForm = False
Unload Me
End Sub
Private Sub UserForm_Initialize()
closeForm = True
End Sub
Private Sub UserForm_QueryClose(Cancel As Integer, CloseMode As Integer)
If closeForm = True Then UserForm1.Show
End Sub
Khi bấm nút thoát (X) của Form1, nó mở Form2, nhưng khi bấm nút thoát (X) của Form2 thì báo lỗi.
Xin cho hỏi tại sao và cách khắc phục!
Chân thành cảm ơn!