Sao bảng tính ẩn khi chọn nút

  • Thread starter Thread starter NH_DK
  • Ngày gửi Ngày gửi
Liên hệ QC

NH_DK

Let's patience
Tham gia
29/7/10
Bài viết
865
Được thích
1,203
Nghề nghiệp
Kế toán
Em có file ví dụ này nhờ anh chị xem dùm: Sao nó lại ẩn đi khi chọn nút: Receiving Report, Delivery Report, Goods List, Cust List?
User: 010020
Pass: 010020

File đính kèm
 
Em có file ví dụ này nhờ anh chị xem dùm: Sao nó lại ẩn đi khi chọn nút: Receiving Report, Delivery Report, Goods List, Cust List?
User: 010020
Pass: 010020

File đính kèm
Giả sử em chọn Receiving Report thì button đó có code là
PHP:
Private Sub CommandButton5_Click() 
   Unload Me
    Xuat.Show
    Application.Visible = False
End Sub
Thì form "Thongtin" ẩn và hiện ra Form khác là Form "Xuat" là đúng rồi
Vậy ý em Sao nó lại ẩn đi là gì ? nói cụ thể hơn đi
viehoai
 
Upvote 0
Em có file ví dụ này nhờ anh chị xem dùm: Sao nó lại ẩn đi khi chọn nút: Receiving Report, Delivery Report, Goods List, Cust List?
User: 010020
Pass: 010020

File đính kèm
Code viết chưa hợp lý thôi! Ví dụ code cho nút Goods List:
PHP:
Private Sub CommandButton2_Click()
  Unload Me
  Call Goods
  Application.Visible = True
End Sub
Viết thế không ăn thua.. lý ra phải vầy:
PHP:
Private Sub CommandButton2_Click()
  Application.Visible = True
  Unload Me
  Call Goods
End Sub
Tức cho Application.Visible = True trước rồi hẳn làm gì thì làm
 
Upvote 0
Web KT

Bài viết mới nhất

Back
Top Bottom