PDA

View Full Version : Scripting.FileSystemObject - Runtime Error



kdayman
2004-10-14, 04:31 PM
I have the following line:

Set FSO = CreateObject("Scripting.FileSystemObject")

It is in code that is running on 250+ machines and work on all but one. The one machine get the following error:


Run-Time error '429':
ActiveX component can't create object


The big problem is the user/machine that is experiencing the problem is in a remote office some 2000 miles away, so I need to resolve it by email. Anyone have any ideas what could be causing the problem?

jwanstaett
2004-10-14, 09:44 PM
The file scrrun.dll is not resisted on the use computer this is scripting runtime dll or Scripting in not enable on the computer

kdayman
2004-10-14, 09:56 PM
How can I register the scrrun.dll or enable scripting on this machine?

mtuersley
2004-10-15, 05:02 AM
REGSVR32 but you could have them repair their OS because the DLL should be there and registered unless they uninstalled something and accidentally removed it.

Also, you ought to look into WebEx or another such service if you have remote offices. Makes troubleshooting a lot EASIER!

kdayman
2004-10-15, 03:42 PM
I sent the following to the user and it fixed the problem. Thanks all.

In windows click the start and select "Run...", then enter regsvr32 scrrun.dll reboot your machine and start Acad to see if the error goes away.