Simple Login using Visual Basic 2010 (SQL Server database)

Language

Simple Login System using Visual Basic 2010. The File-type for its database is SQL SERVER. This Project is for beginners specially for those who are developing System and finding their security purposes for their System using in Visual Basic 2010. This is for Education purposes. Mabuhay Filipino Programmers~!

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.

Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:

1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

Comments

by the way, I forgot posting the account user: Username: Admin and password: admin
Submitted byAnonymous (not verified)on Wed, 09/26/2012 - 03:01

sir can you help me to create a simple library system in visual basic 2010, i need to pass it this week for my thesis can you send me sample code on my email :)
Submitted byAnonymous (not verified)on Thu, 01/31/2013 - 23:49

i can not run the code the program send a warning letter .. this is
it : visual Studio cannot start debugging because the target 'C:\Users\faiz\Documents\bankingSystem\bin\\Debug\BankngSystem, exe is missing .Pleas bulid the project and retry, or set the OutputPath and AssemblyName properites apprpritely to point at the correct location for th trget assbly .

Submitted byAnonymous (not verified)on Sun, 07/07/2013 - 05:12

Thnx for the codes
Submitted byAnonymous (not verified)on Mon, 07/08/2013 - 01:12

it will run to vb2008 ?
Submitted bydhivya (not verified)on Wed, 07/24/2013 - 14:40

sir can i help me to create a student mark analysis system visual basic source code send my email id
Submitted byintan (not verified)on Wed, 11/27/2013 - 22:19

can help me to do login code for my workshop 1 ?
Submitted by<hashtag> (not verified)on Tue, 07/22/2014 - 07:45

Hi sir, i am a IT student and currently having my capstone. i just want to ask for simple login codes using MS Access as its Database. this is my codes: Imports System.Data Imports System.Xml Partial Class AddPage Inherits System.Web.UI.Page Dim dbcon As New OleDb.OleDbConnection("Provider= Microsoft.JET.OLEDB.4.0;DataSource =" & Server.MapPath("~/App_Data/MPDCOofficial.mdb")) Dim adap As New OleDb.OleDbDataAdapter("Select from SignIn where Employee_IDnumber='" & Me.TextBox1.Text.trim & "' AND Password='" & Me.TextBox2.Text.trim & "'", dbcon) Dim dbset As New DataSet Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click adap.Fill(dbset) If dbset.Tables(0).DefaultView.Count > 0 Then Session("AddPage") = dbset.Tables(0).DefaultView.Item(0).Item(3) Response.Redirect("AddInfoPage.aspx") Else Response.Write("IncorrectUsername/Password") End If End Sub End Class /* but my problem is there is an error in Password are in dataadapter telling "[NullReferenceException: Object reference not set to an instance of an object.]" . What is the problem with it? thanks :)

Add new comment