S
Sajid
Hi!,
I have the following code for my Dataview which doesn't work: Any suggestions...
Dim dv As DataView
dv = New DataView
With dv
.Table = TestTable
.AllowDelete = True
.AllowEdit = True
.AllowNew = True
.RowFilter = "Column1 = Select Column from AnotherTable"
'I have many Column1 values in "AnotherTable" that I want to display
.Sort = "Column1 DESC"
End With
I have the following code for my Dataview which doesn't work: Any suggestions...
Dim dv As DataView
dv = New DataView
With dv
.Table = TestTable
.AllowDelete = True
.AllowEdit = True
.AllowNew = True
.RowFilter = "Column1 = Select Column from AnotherTable"
'I have many Column1 values in "AnotherTable" that I want to display
.Sort = "Column1 DESC"
End With