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 bkrike 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: *

  • Users: Informed
  • Content: Threads
  • Order by date
  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

    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