2
Answers

C# icon and closing form

Jihen Arem

Jihen Arem

10y
808
1
When I press the button (X), I don't want it to exit the application. but I want it to close the form and hide it from the task bar. At the end I will exit it from the icon I made.
 
My program will look like  wamp or xamp. I will run or exit from the icon.
 
Any help or idea please! Thanks !
Answers (2)
0
Sukesh Marla

Sukesh Marla

NA 11.8k 1.2m 12y
in  "PageIndexChanging"  you have to rebind the datagrid as 

protected void grdView_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
    FillGrid();
    grdView.PageIndex = e.NewPageIndex;
    grdView.DataBind();
}

Try this


Check this is correct answer if it helped.