I have just reinstalled a VB6 app I have developed on a Windows XP machine and it is crashing at a point that had previously been OK for many years running in XP.
This involves a third party graphing utility called the Flipper Graph Control I have inserted the pertinent section from the manual:
"Sending ADO Recordsets to Flipper Graph Control
Flipper Graph Control achieves database interaction through fairly passive means. Essentially, you use ADO to set up the connection and the Recordset then pass it to Flipper. We use an intermediate object, FlpGrfADO, to receive and read the Recordset. Then the FlpGrfADO object is passed to Flipper Graph Control and the Recordset information is placed into the Graph Control's internal data buffer. There is no link or connection to
the database or Recordset data saved by Flipper Graph Control or the FlpGrfADO object. Therefore, if the data in the database or Recordset is modified you will have to resend the data to Flipper. Also, when the data is sent to Flipper Graph Control via FlpGrfADO the old data in the data buffer will be overwritten by the new data.
However, if there are more row and columns in the internal data buffer than in the Recordset then the excess rows and columns will not be affected."
Here is the relevant code:
Dim flpData As New FLPGRFADOLib.FlpADO
'Send RS to flpData
'This is the line that gives me the runtime error
'grsTempGraphChronMedTable links to an MS Access table
flpData.Recordset grsTempGraphChronMedTable
When I search the TekTips form on "ActiveX component can't create object", I get several hundred posts, but I'm not sure how to narrow these down to VB6.
Any suggestions?
Thanks!!
This involves a third party graphing utility called the Flipper Graph Control I have inserted the pertinent section from the manual:
"Sending ADO Recordsets to Flipper Graph Control
Flipper Graph Control achieves database interaction through fairly passive means. Essentially, you use ADO to set up the connection and the Recordset then pass it to Flipper. We use an intermediate object, FlpGrfADO, to receive and read the Recordset. Then the FlpGrfADO object is passed to Flipper Graph Control and the Recordset information is placed into the Graph Control's internal data buffer. There is no link or connection to
the database or Recordset data saved by Flipper Graph Control or the FlpGrfADO object. Therefore, if the data in the database or Recordset is modified you will have to resend the data to Flipper. Also, when the data is sent to Flipper Graph Control via FlpGrfADO the old data in the data buffer will be overwritten by the new data.
However, if there are more row and columns in the internal data buffer than in the Recordset then the excess rows and columns will not be affected."
Here is the relevant code:
Dim flpData As New FLPGRFADOLib.FlpADO
'Send RS to flpData
'This is the line that gives me the runtime error
'grsTempGraphChronMedTable links to an MS Access table
flpData.Recordset grsTempGraphChronMedTable
When I search the TekTips form on "ActiveX component can't create object", I get several hundred posts, but I'm not sure how to narrow these down to VB6.
Any suggestions?
Thanks!!