S
Sam
hi,
I have a combox in a datagrid linked to a dataset. I fill the dataset
using my own customised class and it works fine.
da.AddTable("select FieldTypeID, FieldType from FieldTypes",
DatabaseAccess.SQLType.Text)
m_dsFields = da.GetDataset
Dim r As New DataRow
m_dsFields.Tables(1).Rows.Add(r)
However the 2 lines above where I try to add a blank row to my dataset
don't work. How can I do that ?
Thx
I have a combox in a datagrid linked to a dataset. I fill the dataset
using my own customised class and it works fine.
da.AddTable("select FieldTypeID, FieldType from FieldTypes",
DatabaseAccess.SQLType.Text)
m_dsFields = da.GetDataset
Dim r As New DataRow
m_dsFields.Tables(1).Rows.Add(r)
However the 2 lines above where I try to add a blank row to my dataset
don't work. How can I do that ?
Thx