Hi,
Im trying to populate a DataGrid with a DateReader in .NET FrameWork 1.1 and its not happening.
These are only what I can find and it is for .NET Framework 2.
or
Do you have some other alternatives for 1.1
Thanks
Mike
Im trying to populate a DataGrid with a DateReader in .NET FrameWork 1.1 and its not happening.
These are only what I can find and it is for .NET Framework 2.
Code:
dgDataGrid.DataSource = myReader
dgDataGrid.DataBind()
or
Code:
Dim source As New BindingSource
source.DataSource = DataReader
DataGrid1.DataSource = source
Do you have some other alternatives for 1.1
Thanks
Mike