How to change the text in text file in a form with two textbox.
One for user key in old password.
Another for user to key in new password and they click button.It will change the password in text file.After this it will use the new password to compare.
Tq very much.......
For question 1:
private
void textBox1_TextChanged(object sender, EventArgs e){????
}
private
void button1_Click(object sender, EventArgs e){?????
}
Question 2
private void textBox1_TextChanged(object sender, EventArgs e)
{????
}
private void textBox2_TextChanged(object sender, EventArgs e)
{????
}
private void button1_Click(object sender, EventArgs e)
{?????
}
Replies
Know the answer? Post it — somebody with the same question will find it here.