If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > Delphi, C etc > Run Time Error 429

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 07-17-04, 03:05
dbtechzala dbtechzala is offline
Registered User
 
Join Date: May 2004
Posts: 16
Run Time Error 429

i m facing critical probs.
i had created apps using vb6 and access 2000 as backend.
I have used P & D WIZARD TO DEPLOY.
i have used MS ADO 2.6 object.
connection string of connection object is as under:
"Provider=Microsoft.Jet.OLEDB.4.0;Jet OLEDBatabase Password=pwd; Data Source=" & dbpath & ";Persist Security Info=False"

i had also deployed neccessary files for Microsoft Jet ole db 4.0 provider.
i had also include DCOM98 into deployment.
In some (NOT ALL) WIN98 OS it gives me following errors:
1) a class doesn't support automnation or support accepted interface.
why this happens on some m/c ?
2 ) Run time error : - Object Not set

What is solution for it ?

plz help me.
Reply With Quote
  #2 (permalink)  
Old 07-18-04, 02:08
sam_moses sam_moses is offline
Registered User
 
Join Date: Jul 2004
Posts: 1
Try using early binding when declaring the db and recordsets
eg

dim cn as new adodb.connection
dim rec as new adodbd.recordset

and / or

Declare the connection in a module and make them a global variable.

Let me know if it works


regards

Sam
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On