DataGrid

  • Thread starter Thread starter DarekB.
  • Start date Start date
D

DarekB.

How to get datas,strike, from datagrid
4 ex:
string row = datagrid.read(x) //x is a num row in datagrid


???

Please on private
(e-mail address removed)

and group, of c.


Reg


D
 
[Posted and mailed]

DarekB. said:
How to get datas,strike, from datagrid
4 ex:
string row = datagrid.read(x) //x is a num row in datagrid

The indexer of a datagrid will give you a specific cell, e.g.

object data = datagrid[row, col];
 
Back
Top