Click here to Skip to main content
15,885,985 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i use a datagridview for follow up status of institute equerry. clerk select any row and right click ( i have use context menu) there is three option 1.follow up,
2. cancel enquerry, 3. convert to regirtration. i just wanted if user click 2nd and 3rd option and work according(go to the cancel form or registration form) after that on those row those option will not display more or is it not possiable than context menu become unactive on that row.
because is a student cancel their enquerry, institute can't do anythings, application just show this row in grey color and context menu will not work
i have using this code for goto the registration page.
string sname = dataGridView1.SelectedRows[0].Cells[0].Value.ToString();
string contectno = dataGridView1.SelectedRows[0].Cells[1].Value.ToString();
Registration r = new Registration(sname, contectno);
r.Show();
Posted

1 solution

can any body advise me on this please
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900