access login form
How To Make A MS Access Login Form
Watch and find out how to make a MS Access login form. Login forms are useful to collect needed information from the user. In this video, you will find out how to make one with MS Access VBA. [sourcecode language=”vb”] Option Compare Database ‘================= ‘frmMainForm code: ‘================= Private Sub Form_Close() DoCmd.Close acForm, "frmLogin" End Sub […]