Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sheridan ultragrid

Status
Not open for further replies.

shabnam

Programmer
Oct 3, 2000
26
0
0
US
I am using a Sheridan ultragrid and trying to bind its datasource to an ADO recordset. I use the following code -

Dim conn As New ADODB.Connection
Dim rs As New ADODB.Recordset

conn.Open "provider=sqloledb;server=ssarup-desk1;uid=shabnam;"
rs.Open "select * from pubs..authors", conn
Set SSUltraGrid1.DataSource = rs


when I run the app, it gives me the error 'Provider does not support minimum binding requirements'. The sheridan help says that I can bind the datasource to an ADO recordset. Any ideas what the problem is? My db is SQL Server 7.0
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top