C_man
November 14th, 2005, 09:17 AM
Hello guys,
I have a datagrid with a footer.
Since the footer is the last line of the datagrid,
How do i add a label below the footer and add a new row below the footer?
The data of the table is dynamic:
Below are part of my code:
If j.Item.ItemType = ListItemType.Footer = True Then
Dim myAddnewRow As DataRow = myNewTable.NewRow
myNewTable.Rows.Add(myAddnewRow)
label1.text="hello"
End If
thanks
I have a datagrid with a footer.
Since the footer is the last line of the datagrid,
How do i add a label below the footer and add a new row below the footer?
The data of the table is dynamic:
Below are part of my code:
If j.Item.ItemType = ListItemType.Footer = True Then
Dim myAddnewRow As DataRow = myNewTable.NewRow
myNewTable.Rows.Add(myAddnewRow)
label1.text="hello"
End If
thanks