I have created an event called textBox1_Leave; But when I run my program, and I move the focus from txtBox1 the event isn't triggered.
I would like this event to be triggered, so I can check if the Name value that the user enters in txtBox1 exists in my database. If it does, I want to enable button1 by setting button1.Enable = true and otherwise to false.
My C# Code:
private void textBox1_Leave(object sender, EventArgs e)
{
OleDbConnection A=new OleDbConnection();
A.ConnectionString=Program.DBPATH;
A.Open();
OleDbCommand BB=new OleDbCommand();
BB.Connection=A;
BB.CommandText="SELECT username FROM Users WHERE (username = '" + textBox1.Text + "')";
OleDbDataReader CC = BB.ExecuteReader();
if (CC.Read())
{
button1.Enabled=true;
}
else
{
button1.Enabled=false;
}
}

textBox1.Leave += textBox1_Leave;in the form's constructor. – LarsTech Sep 16 '12 at 13:47