Please help,

I am using win 95.
In my code I Create a file using:
Dim fs, a As Object

Set fs = CreateObject("Scripting.FileSystemObject")
Set a = fs.createtextfile(\\servername\folder\filename.txt, True)
a.writeline Param
a.Close

when I try to execute, I have this error:

Run time error'429'
Active X component can't crate object

Anybody know how to solve this problem?
If I need to install new dll, what file should I install, and where should I put?

Thank you,

dummy