bindingsource control and SqlCeResultSet?

  • Thread starter Thread starter Paul
  • Start date Start date
P

Paul

Hi,

Can the BindingSource control be used with a SqlCeResultSet? Any
documentation or eamples would be great!

Thanks
 
Though BindingSource is not a control, yes, that can (and in some cases
should) be done:



BindingSource bs = new BindingSource();

bs.DataSource = myResultSet;

dataGrid.DataSource = bs;



All samples for BindingSource with DataSet are applicable to ResultSet.



Best regards,

Ilya

This posting is provided "AS IS" with no warranties, and confers no rights.

*** Want to find answers instantly? Here's how... ***

1. Go to
http://groups-beta.google.com/group/microsoft.public.dotnet.framework.compactframework?hl=en
2. Type your question in the text box near "Search this group" button.
3. Hit "Search this group" button.
4. Read answer(s).
 
Back
Top