toancvp > 15-06-16, 12:44 PM
ongke0711 > 15-06-16, 01:17 PM
toancvp > 15-06-16, 01:23 PM
toancvp > 15-06-16, 02:42 PM
(15-06-16, 01:17 PM)ongke0711 Đã viết: Các control đều có phương thức: Visible/Invisible (Hiện/Ẩn). Bạn chỉ cần code nó:
-----------------------------
If cboPhuongThucVC="Container" Then
Me.txtSoContainer.Visible = True
Me.txtByAir.Visible = False
.......
Else
Me.txtSoContainer.Visible = False
Me.txtByAir.Visible = True
.......
End if
---------------------------
- Khi click mở form khác thì truyền tham số thông tin muốn lấy từ form hiện tại thông qua tham số "OpenArgs"
Vd:
Truyền tham số lấy từ hiện tại:
DoCmd.OpenForm "frmCapNhat", acNormal, , , , acDialog, OpenArgs:= Me.txtTenNhaCC
Khi frmCapNhat load lên thì code cho nó:
Private Sub Form_Load()
If IsNull(Me.OpenArgs) = False Then
[Textbox cần điền info].Text = Me.OpenArgs
...
End if
ongke0711 > 15-06-16, 08:55 PM
toancvp > 16-06-16, 04:23 PM