Click here to Skip to main content
15,886,830 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Hi!


I am developing one wcf application. In this application i m using callback function. By using this function i m sending values to client in particular time interval. I m storing this values in dataset and sending to client. In client side i m using tabpages and tabcontrol. I m getting dataset from service and bind with datagridview. And displaying gridview in tabpage. And continuously i m getting the values from service and biding this values to gridview but in gridview this values are not updating.

Plz help me to solve this problem...
Thanks to all
Posted

1 solution

Use this line of code to refresh the datagridview after binding the data source

dataGridView1.Refresh();

hope this will helps.
 
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