ADO records not passing within dll

  • Thread starter Thread starter JW
  • Start date Start date
J

JW

I created a dll control which utilizes (among other things) ADO recordsets.
The control properly reads the database catalog and can pull an empty
recordset, but when passing records to a listform (seperate form with a
gridview - as Friend) within the control, no records are passed, but the
recordset structure is intact... Any idea what might be going on here??
advTHANKSance
JW
 
JW,

As for ever, can you show us a piece of code, as you cannot find it with
that, what you expect you from us to find it without that.

Cor
 
¤ I created a dll control which utilizes (among other things) ADO recordsets.
¤ The control properly reads the database catalog and can pull an empty
¤ recordset, but when passing records to a listform (seperate form with a
¤ gridview - as Friend) within the control, no records are passed, but the
¤ recordset structure is intact... Any idea what might be going on here??
¤ advTHANKSance

Have you disconnected the Recordset by setting ActiveConnection to Nothing? Are you marshaling the
Recordset ByVal?


Paul
~~~~
Microsoft MVP (Visual Basic)
 
Back
Top