CB
Clay Burch
Syncfusion Team
July 2, 2002 07:32 AM
Try
DataGrid(i,j).someproperty = "something"
provided 'someproperty' takes a string...
PE
Peter
July 3, 2002 04:18 AM
Hi Clay,
thank you. It works, meaning I'm not getting this error any more. But now the only property I can reach is
DataGrid(1,1).GetType
Please help. I'm trying to reach Text property. Is there any sample I can look at. Thank you SO very much.
CB
Clay Burch
Syncfusion Team
July 3, 2002 12:29 PM
If the cell value is a string, you can get it just by
dim cellValue as String = datagrid1(i,j)
AD
Administrator
Syncfusion Team
July 3, 2002 11:56 PM
> If the cell value is a string, you can get it just by
>
> dim cellValue as String = datagrid1(i,j)
Hi peter.
if the datagrid cellvalue accepts string then
Just say(type)
DataGrid(i,j) = "Vipul"
Hope this helps
VB
Vipul Bhatt
July 3, 2002 11:56 PM
> If the cell value is a string, you can get it just by
>
> dim cellValue as String = datagrid1(i,j)
Hi peter.
if the datagrid cellvalue accepts string then
Just say(type)
DataGrid(i,j) = "Vipul"
Hope this helps