DataGrid fill with Datas - CompactFramework

  • Thread starter Thread starter Enrico Wegge
  • Start date Start date
E

Enrico Wegge

Hello,

does someone know a solution, in order to fill the DataGrid with entries,
without binding the DataGrid to a table of the SQL mobile server? As it was
still possible in eMbedded the Visual basic 3,0.

Thanks
Enrico
 
Enrico,

How will you be persisting your data? For example, if you use XML, you can
use DataSet.ReadXml to load the data into a DataSet and then bind the
DataGrid to a DataTable in the dataset.
 
Hello,

I used the SQL server mobile. On my form 4 DataGrid's are to appear. The
data are to be built up from several tables and be appeared then in the
DatagGrid.

Example:
Table 1: Name
Table 2: calculation
If a calculation is not paid, the name with an exclamation mark is to
appear, is paid all calculations in the DataGrid, then no exclamation mark
is to appear. The column with the NamenID's is not to be indicated, but I
need the NamenID's over the calculations for the next form to access to be
able.

Enrico
 
Enrico,

The easiest way to get most of the what you want working is to use the data
tools for SQL Mobile in VS 2005. I'm not positive that I understand what you
want with the exclamation point, but whenever a cell is selected in one
grid, you can trap that event and filter or fill any other grids' data
sources as needed.
 
Back
Top