Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
 
  HOME    TRACKER    Visual Basic




Run-Time Error '429'. ActiveX Component Can't Create Object


Hi:

Dim session As New notessession
session.Initialize
TextUserName = session.UserName
Set session = Nothing

The above codes runs fine in my computer installed with VB6. After I package it as a setup.exe and installed to another computer, the program did not run but gave me the error code 429.

Please help and appreciated!

Rgds-Jack




View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread
Run-time Error '429' ActiveX Component Can't Create Object
hi

as i was running the code in excel 2000 using marco but i keep having this error

Run-time Error '429' ActiveX component can't create object

then when i click on the debug button it show this error stmt
Set objFSO = CreateObject("Scripting.FileSystemObject")

p/s:it work fine on other pc but it cannot work on mine.. isit tat my pc din install properly???

pls help...

thanks in advance!!!

Run-time Error '429': ActiveX Component Cant Create Object
i get this error and it highlights this like


Code:
Set DDraw = DX.DirectDrawCreate("")

and i get this error in a game that i played every day and it didnt happen before... i think its something with directx

and yea i downloaded directx9b and installed it a sec ago.. and still the same problem.

any ideas how to fix this?

thanx..

Run-time Error '429': ActiveX Component Can't Create Object
i have been working on this bug for a week and now i am at a total loss

i posted a quick ? about it here but didn't get very far with it

i've included a sample of code that mimicks what my program does

can anyone help me??

it runs just fine on a machine with VB on it, but get one without and it wont run, it just comes up with an error.

then if you install vb on that same machine it'll run

even if you then uninstall windows

i know about this binary incapability problem (which is the responce i got before) but i don't think it really apply's here (obviously)

HELP

Run-time Error '429': ActiveX Component Can't Create Object
Hi,

I have a VB 6.0 Application that is packaged and then installed on laptops. The application was created using a Windows 98 machine and has been used on these machines for over a year. We are now getting XP machines and I tried to install the application on the new machine . Everything works fine expect when I press the button that actually opens the Access Database so the user can run reports and queries. When I press the button I receieve the following error:
"Run-time error '429': ActiveX component can't create object".

Any ideas would help!!
Thanks!
Maggie


The code behind the button is:

Sub cmdReport_Click()
Dim appAccess As Access.Application
Dim strFormName As String

strFormName = "frmQuarterCloseButton"
Set appAccess = New Access.Application
appAccess.OpenCurrentDatabase gsDatabaseName
'appAccess.UserControl = True
appAccess.DoCmd.OpenForm strFormName

appAccess.DoCmd.GoToControl "cmdQuarterCloseDisplay"
MsgBox "Go to Access to View Reports and Click OK when finished"
appAccess.CloseCurrentDatabase
appAccess.DoCmd.Quit
End Sub