Dear All,
My question are simple:
1. how to get value of a column of datagrid?
2. how to disable row sizing of datagrid?
any prompt reply, would be appreciated .. thanks
Regards
Winanjaya
Printable View
Dear All,
My question are simple:
1. how to get value of a column of datagrid?
2. how to disable row sizing of datagrid?
any prompt reply, would be appreciated .. thanks
Regards
Winanjaya
1. to get the information from a cell, use the following code:
dim strTemp as string
strTemp = datagrid.Item(0,0) --> (row, column)
2. no idea
Thanks for the speedy respon, but how to get the current row no. and also how to get the current col no. .. please advice .. and thanks a lot in advance
Regards
Winanjaya
dim nRow, nColumn as integer
nColumn = DataGrid.CurrentCell.ColumnNumber ()
nRow = DataGrid.CurrentCell.RowNumber ()
Gette