Posts Tagged ‘Login’

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

(more…)

Access 2007 Tutorial Creating a Multi User Login, for a Database.

Saturday, February 20th, 2010

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

(more…)

MS Access 2007 Login Form

Wednesday, November 25th, 2009

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

(more…)