Visual Basic 2008 Tutorials – Login System Using a Database
Tuesday, February 23rd, 2010
Here is a login system using a access database
questions, comments and requests to kreativedevelopments@hotmail.co.uk
Duration : 0:8:2
Here is a login system using a access database
questions, comments and requests to kreativedevelopments@hotmail.co.uk
Duration : 0:8:2
Username.SetFocus
If Username = “User1″ And Password = “Password” Then
MsgBox “Welcome User1″, vbInformation, “Database”
DoCmd.Close
DoCmd.OpenForm “Form1″
ElseIf Username = “User2″ And Password = “Password” Then
MsgBox “Welcome User2″, vbInformation, “Database”
DoCmd.Close
DoCmd.OpenForm “Form2″
ElseIf Username = “User3″ And Password = “Password” Then
MsgBox “Welcome User3″, vbInformation, “Database”
DoCmd.Close
DoCmd.OpenForm “Form3″
Else
MsgBox “Please re-enter Username and Password”
End If
End Sub
Duration : 0:4:58
The Northwind sample database provided with MS Access 2007 has been upgraded to demonstrate many of the new features available in MS Access 2007. In this video we take a look at the log-in form and the new MS Access 2007 tempVar
Duration : 0:5:54