Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

When i try to access the FileSystem

Status
Not open for further replies.

unicorn11

Programmer
Jun 10, 2000
392
IN
When i try to access the FileSystemObject I get this error

Error Type:
(0x80040111)
ClassFactory cannot supply requested class
/abhi/sabe_tv/ line 26

I checked my registry my Norton 2001 seems to be blocking the script from running

Unicorn11
unicorn11@mailcity.com

[red]Luck is not chance, it's toil; fortune's expensive
smile is earned.[red]
 
Code:
  dim job
  jobb = "0"
[red]
Code:
Set fs = CreateObject("Scripting.FileSystemObject")
[/red]
Code:
  filename = server.mappath("program_details.txt")
  Set thisfile= fs.OpenTextFile(filename,1,False)
  Do until thisfile.AtEndOfStream
  thisline = thisfile.readline
  job = split(thisline, ";")

the red line is line 26 where the error is giving
Unicorn11
unicorn11@mailcity.com

[red]Luck is not chance, it's toil; fortune's expensive
smile is earned.[red]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top