I have datagird view in description form i am binding this datagrid view using binding source…
i have sent the selected row values from description form to another form(order form)….thats fine…
i have done some modifications….in order form now i need to update the datagrid view in descrption form…
I dont how to use the binding source for updating in order form …
Do i need to pass binding source as a constructor, if so would you pls tell a sample code snippet..
or can i just do like this datagridview1.refresh() ; in order form …
I am not sure how to do this would any pls help on this…
Many thanks……
I would not pass it in the constructor but i would use a public property of the other form. after that if all your bindings are done correctly you can call refresh in the grid of first form but can also be that you would see the changes immediately. show your bindings.