Link to home
Start Free TrialLog in
Avatar of dotnet0824
dotnet0824

asked on

Winform refresh

Hi,
I have datasets being sent from server to the client. All the data is filtered from the datasets retrieved for display purposes whereEver necessary. What r the options availabe in windows form (Winform applications in .NET) for refreshing the datasets.

Avatar of ladarling
ladarling
Flag of United States of America image

If you are using the dataset/tableadapter scenario, you use:
myDataSetTableAdapter.Fill(myDataSet)
If you are using command objects, you would need to execute the command again. As for a *refresh* method, I am not aware of any.
ASKER CERTIFIED SOLUTION
Avatar of Anurag Thakur
Anurag Thakur
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial