I seem to be having problems finding the height of a row in a DataGrid.
I have a DataGrid control in which the user can resize the rows manually. I need to be able to access the row heights in code and possibily change them if necessary.
I can get to an individual row by the following code:
But there is no Height property?VB Code:
dsTarget = mdgdTarget.DataSource dtTarget = dsTarget.Tables.Item(mdgdTarget.DataMember) drTarget = dtTarget.Rows.Item(intRow)![]()





Reply With Quote