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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Informed

    Question about default properties

    Consider the following class definition: ----pExample.cls---- Private m_Recordset As ADODB.Recordset Property Let Recordset(RHS As ADODB.Recordset) Set m_Recordset = RHS End Property Property Get Recordset() As ADODB.Recordset Set Recordset = m_Recordset End Property ---- The Recordset...
  2. Informed

    Reentrant error message with requery

    John, It's not the find that generates the error - it's the second resync. Also, .find "TableName=""Variables""" doesn't work. I think in the area of quotes (which is another problem), ADO should use single quotes. Cheers, Rob.
  3. Informed

    Reentrant error message with requery

    Why does the following ADO code running off a SQL 7 DB: With rsReadTableInfo .Open .Find "TableName='Variables'" .Resync adAffectCurrent .MoveFirst .Find "TableName='Salutations'" .Resync adAffectCurrent End With...

Part and Inventory Search

Back
Top