Looking for a C# programmable Gird control that supports SqlCeResultSets, Advanced binding (can disp

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

Paul

Looking for a C# programmable Gird control that supports SqlCeResultSets,
Advanced binding (can display tabular data from multiple tables on the same
row), CF 2.0

any recommendations?
 
DataGrid included with NETCF can do that. Note neither DataGrid nor
SqlCeResultSet can access data in related tables like DataGrid/DataSet on
desktop can do.

However, you can JOIN several tables together with proper RS SQL query and
DataGrid would show this data in a single table.


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).
 
I tried this and I can get the joined query to show in the data grid using a
SqlCeResultSet. However I can't find a way to get the table styles & column
styles wizard to work with the Data Grid using the Result Set so I can set
headers and column widths.



Is there a way to do this with the Data Gird and SqlCeResultSet



Thanks
 
I'm not sure if there's a wizard for that, but you can create table styles &
column styles programmatically.

It works the same way for any data source. Here's the sample:
http://www.inthehand.com/forums/viewtopic.php?t=96

Note: mapping names are case sensitive.

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