Hi,
How do I load a matrix and bind to a datasource and have multiples rows ready for editing?
I would usually bind the datasource follow by the columns but that doesn't make the rows editable.
Set oMatrix = oForm.Items.Item("1").Specific
Set oColumns = oMatrix.Columns
Set oDBDataSource = oForm.DataSources.DBDataSources.Add("@TableName")
Set oColumn = oColumns.Item("No")
oColumn.DataBind.SetBound True, "@TableName", "U_ItemNo"
.
.
oMatrix.Clear
Please note, I am using VB6. Help appreciated. Thanks.