Groups | Blog | Home
all groups > dotnet compact framework > october 2005 >

dotnet compact framework : bindingsource control and SqlCeResultSet?


Paul
10/21/2005 11:59:50 AM
Hi,

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

Thanks

Ilya Tumanov [MS]
10/21/2005 12:14:51 PM
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).

[quoted text, click to view]

AddThis Social Bookmark Button