Hi
I have written a windows forms application that connects tosql server compact3.5 database. I store my usernames and passwords in the database. If I delete a username in the database via the application it does delete it, but I have to close the application and restart it, otherwise you can still use the username to log in.
Whats the problem here and how can I solve it?
if (result == DialogResult.Yes)
{
if (results >0)
{
userDataTableAdapter.DeleteQuery(comboBox2.Text);
userDataTableAdapter.Update(spitKeyDataBaseDataSet3.UserData);
clearboxes();
}