Greetings:
I am attempting to display rows from an SQLCeResultSet.
The rows are clearly displaying; but no column data shows. If I use a standard Windows DataGridView is shows fine.
The database has three rows; and the Telerik RadGridView shows that there are three rows displayed; but the column data is not present. I have set the column names in the designer.
I setup the Windows DataGridView in the same manner. It shows the column data but the RadGridView does not.
Any ideas why ?
Thanks,
Robb Murdock
I am attempting to display rows from an SQLCeResultSet.
The rows are clearly displaying; but no column data shows. If I use a standard Windows DataGridView is shows fine.
The database has three rows; and the Telerik RadGridView shows that there are three rows displayed; but the column data is not present. I have set the column names in the designer.
I setup the Windows DataGridView in the same manner. It shows the column data but the RadGridView does not.
Any ideas why ?
Thanks,
Robb Murdock
Dim oConn As New SqlServerCe.SqlCeConnection
oConn.ConnectionString = ConnectString
oConn.Open()
Dim oCmnd As New SqlServerCe.SqlCeCommand("select * from tblMyData", oConn)MyRadGridView.DataSource = oCmnd.ExecuteResultSet(SqlServerCe.ResultSetOptions.Updatable + SqlServerCe.ResultSetOptions.Scrollable)