Datagrd help

  • Thread starter Thread starter Steve Caliendo
  • Start date Start date
S

Steve Caliendo

Hi,

I need to change the position of a datagrid at run time, with it's location
being dependent on the height of another datagrid.

My problem is that I don't know how many rows are going to be in the
recordset, and I also don't know what the height of the cell is going to be
from row to row.

Is there a way to programmatically say : "Put the top of this datagrid at
the bottom of the previous datagrid" ?

Thanks,

Steve
 
Dont use X/Y coordinates... just use FLOW layout.

<asp:DataGrid.../><br>
<asp:DataGrid.../>

They will be one above another....
 
Steve Caliendo said:
Hi,

I need to change the position of a datagrid at run time, with it's location
being dependent on the height of another datagrid.

My problem is that I don't know how many rows are going to be in the
recordset, and I also don't know what the height of the cell is going to be
from row to row.

Is there a way to programmatically say : "Put the top of this datagrid at
the bottom of the previous datagrid" ?

Thanks,

Steve
 
Back
Top