Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
What is the best way to refresh a datagridview?
Message
From
02/11/2007 15:07:33
 
 
To
02/11/2007 14:56:41
General information
Forum:
ASP.NET
Category:
Other
Miscellaneous
Thread ID:
01266176
Message ID:
01266181
Views:
9
I got it to work this way:
// Get inserted data
dsPolicyNotes = oPolicyNotesBiz.GetNotes(PolID);

// refresh the grid to reflect inserted record
// I do not know if this is the best way, but it works
grdPolicyChangesNotes.ReadOnly = true;
grdPolicyChangesNotes.DataSource = dsPolicyNotes;
grdPolicyChangesNotes.DataMember = "PolicyNotes";
Sergio
Previous
Reply
Map
View

Click here to load this message in the networking platform