private void btnUserUpdate_Click(object sender, EventArgs e)
{
User_Update x = new User_Update();
x.Show();
this.Hide();
}
Above I have a code for a button. After I clicked the above button, it will bring me to a new form. What I want is after it brings me to the new form, I want the button to be highlighted so that the user will know which form they are in. How do I do that?
Srinivasan RamamoorthiPosted Nov 5, 2021, 1:34 PM
Samuel TohPosted Nov 5, 2021, 12:08 PM
Srinivasan RamamoorthiPosted Nov 5, 2021, 11:19 AM