tranthanhan1962 > 26-08-18, 11:02 AM
ongke0711 > 26-08-18, 12:23 PM
mrsiro > 26-08-18, 12:53 PM
ongke0711 > 26-08-18, 01:31 PM
(26-08-18, 12:53 PM)mrsiro Đã viết: ...
vì 1 số lí do dài dòng nên mình chỉ có thể dùng visible chứ ko dùng close được đó bạn.
mrsiro > 26-08-18, 02:43 PM
tranthanhan1962 > 26-08-18, 02:44 PM
ongke0711 > 26-08-18, 03:37 PM
Option Compare Database
Option Explicit
Dim blnQuit As Boolean
Private Sub Form_Close()
If blnQuit = True Then
DoCmd.Quit
End If
End Sub
Private Sub Form_Open(Cancel As Integer)
Dim CoBanQuyen As Boolean
CoBanQuyen = False 'Thay đổi tham số test này tuỳ theo code check bản quyền'
If CoBanQuyen = False Then
DoCmd.OpenForm "Form2", , , , , acDialog
blnQuit = False
DoCmd.Close acForm, "Form1"
Else
blnQuit = True
End If
mrsiro > 27-08-18, 09:19 AM
If nz(me.txtpass,0) = 0 then
msgbox "nhập pass"
me.txtpass.setforcus
end if
if keycode = 13 then
dangnhap_click
end if
ongke0711 > 27-08-18, 09:51 AM
mrsiro > 27-08-18, 06:10 PM
đây là sự kiện onlick của nút đăng nhập
If nz(me.txtpass,0) = 0 then
msgbox "nhập pass"
me.txtpass.setforcus
end if
đây là tại sự kiện keydown của txtpass
if keycode = 13 then
dangnhap_click
end if