Form1.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.OleDb;
namespace sampleLogin
{
public partial class frmLogin : Form
{
public frmLogin()
{
InitializeComponent();
}
private void btnLogin_Click(object sender, EventArgs e)
{
using (OleDbConnection cn = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=sample.mdb;User Id=admin;Password=;"))
{
using (OleDbCommand cmd = new OleDbCommand("SELECT * FROM tblUserAccounts WHERE Username=@Username AND Password_=@Password_", cn))
{
cmd.Parameters.Add("@Username", OleDbType.WChar, 50, "Username").Value = this.txtUsername.Text;
cmd.Parameters.Add("@Password_", OleDbType.WChar, 50, "Password_").Value = this.txtPassword.Text;
if (cn.State == ConnectionState.Closed)
{
cn.Open();
using (OleDbDataReader rdr = cmd.ExecuteReader())
{
if (rdr.HasRows)
{
rdr.Read();
if ((rdr.GetString(0).Equals(this.txtUsername.Text)) && (rdr.GetString(1).Equals(this.txtPassword.Text)))
{
MessageBox.Show("Login Succesful");
}
}
}
}
}
}
}
}
}
Form1.Designer.cs
namespace sampleLogin
{
partial class frmLogin
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.btnLogin = new System.Windows.Forms.Button();
this.txtUsername = new System.Windows.Forms.TextBox();
this.txtPassword = new System.Windows.Forms.TextBox();
this.lblUsername = new System.Windows.Forms.Label();
this.lblPassword = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// btnLogin
//
this.btnLogin.Location = new System.Drawing.Point(88, 81);
this.btnLogin.Name = "btnLogin";
this.btnLogin.Size = new System.Drawing.Size(235, 23);
this.btnLogin.TabIndex = 0;
this.btnLogin.Text = "Login";
this.btnLogin.UseVisualStyleBackColor = true;
this.btnLogin.Click += new System.EventHandler(this.btnLogin_Click);
//
// txtUsername
//
this.txtUsername.Location = new System.Drawing.Point(88, 6);
this.txtUsername.Name = "txtUsername";
this.txtUsername.Size = new System.Drawing.Size(235, 20);
this.txtUsername.TabIndex = 2;
//
// txtPassword
//
this.txtPassword.Location = new System.Drawing.Point(88, 45);
this.txtPassword.Name = "txtPassword";
this.txtPassword.Size = new System.Drawing.Size(235, 20);
this.txtPassword.TabIndex = 3;
//
// lblUsername
//
this.lblUsername.AutoSize = true;
this.lblUsername.Location = new System.Drawing.Point(12, 9);
this.lblUsername.Name = "lblUsername";
this.lblUsername.Size = new System.Drawing.Size(58, 13);
this.lblUsername.TabIndex = 4;
this.lblUsername.Text = "Username:";
//
// lblPassword
//
this.lblPassword.AutoSize = true;
this.lblPassword.Location = new System.Drawing.Point(12, 45);
this.lblPassword.Name = "lblPassword";
this.lblPassword.Size = new System.Drawing.Size(56, 13);
this.lblPassword.TabIndex = 5;
this.lblPassword.Text = "Password:";
//
// frmLogin
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(330, 118);
this.Controls.Add(this.lblPassword);
this.Controls.Add(this.lblUsername);
this.Controls.Add(this.txtPassword);
this.Controls.Add(this.txtUsername);
this.Controls.Add(this.btnLogin);
this.Name = "frmLogin";
this.Text = "Sample Login";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btnLogin;
private System.Windows.Forms.TextBox txtUsername;
private System.Windows.Forms.TextBox txtPassword;
private System.Windows.Forms.Label lblUsername;
private System.Windows.Forms.Label lblPassword;
}
}





5 comments:
click here to download the project file
Good tutorial.
Nice work on the intermediate approach.
Thanks..
Marius
thanks!
Thank for your code. Do you have for VB .Net? I just start to learn this Programming Language. I'm using a VB 2008. Thank you.
Thanks Sir, Big Help
Post a Comment