I'm using VB6.0 professional. I've created and distributed numerous apps using RDO. The executables still run fine, but I am now receiving errors while I'm in the project:

When trying to Run/Debug Code - "Runtime error 429 : ActiveX Component can't create object"

When trying to Recompile(make the .exe) - "Compile Error: Permission Denied"

The MS Remote Data Object 2.0 is referenced in the project. I've uninstalled & reinstalled vb, but to no avail.

I downloaded the fix 'VB6cli.exe' from the MS website that addresses both symptoms, it executed sucessfully, however, the problems still exist.

The following code is what I've used all year to debug, compile and distribute apps. What happened??!!

Dim AS400cn As rdoConnection 'debug yellows this line
Dim AS400en As rdoEnvironment
Dim AS400conn As String

Set AS400en = rdoEnvironments(0)
AS400conn = "DSN=lnew400;UID=;PWD=;"
Set AS400cn = AS400en.OpenConnection("",rdDriverCompleteRequired, False, AS400conn)

Thanks in advance for your thoughts :0)