Click here to Skip to main content
15,881,803 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have 2 form pages, the first page(default page) is including my data gridview, I can show lot of data in my data gridview.

when I double click on an Item in my data gridview for example (row = 1000) the second form will appear which is for editing,

when I press Edit button in the second page the First page will appear ,

how can I handle -->** that the index of Gridview be on the row which I selected for editing (row = 1000)
Posted
Comments
KM Perumal 1-May-13 3:04am    
Improve ur question.and show ur coding
kamal mahdavi 1-May-13 5:43am    
private void Form1_Load(object sender, EventArgs e)
{
int currentdata = 1000;

dgv_data.FirstDisplayedScrollingRowIndex = currentdata;
dgv_data.Refresh();
dgv_data.CurrentCell = dgv_data.Rows[currentdata].Cells[0];
dgv_data.Rows[currentdata].Selected = true;
Thanks7872 1-May-13 3:10am    
what do you mean by when I press Edit button in the second page the First page will appear why seperate page for editing?
kamal mahdavi 1-May-13 5:36am    
because I have 2 pages... one in menu which shows data in gridview and the second page that include edit button is for editing

1 solution

C#
private void Form1_Load(object sender, EventArgs e)
       {
           int currentdata = 1000;

           dgv_data.FirstDisplayedScrollingRowIndex = currentdata;
           dgv_data.Refresh();
           dgv_data.CurrentCell = dgv_data.Rows[currentdata].Cells[0];
           dgv_data.Rows[currentdata].Selected = true;


}
 
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