Tagged Questions

0
votes
4answers
75 views

What is “Dim fso, MyFile, FileName, TextLine” in VBA?

I received this code from one of those nice people here who are willing to spend their time and energy to share their knowledge with noobs: Sub ReadLinesFromAFileOneAfterAnother ( …
1
vote
2answers
82 views

Classic ASP: Best way to read & write large (5mb+) files using FileSystemObject

All, I'm working on an application that allows authorized users to upload Excel spreadsheets to our server. Once they're uploaded, there's a classic ASP script that reads the dat …
0
votes
2answers
56 views

What’s the .Net replacement for File.Type FileSystemObject property?

In classic Asp we used the File.Type property to get the friendly name associated with a file type from the registry (e.g. "Text Document" for ".txt"). The FileInfo class which gen …
0
votes
1answer
80 views

Delete a chosen line from a text file using ASP?

I have a loop that finds duplicate lines in a .ini file. I can happily find the duplicate lines, and write new lines to the file using FileSystemObject, however... I can't seem to …
0
votes
1answer
31 views

Gadget, Write Unicode Data in XML

Hello I want in Gadget, Write Unicode data in XML File(I use UTF-8 to encode the XML document). for Write to XML, Use " fso = new ActiveXObject("Scripting.FileSystemObject"); ". …
0
votes
1answer
127 views

Truncated files when copying CSV files using FileSystemObject

I am helping my son write a program to format files to load into another system. I have done this before with no trouble. Now I get a 13 KB comma delimited text file and I am cop …
0
votes
1answer
159 views

Are there restricted characters in ADO varchars?

We have a simple file browser on our intranet, built using ASP/vbscript. The files are read by the script and added to an ADO Recordset (not connected to a database), so we can sor …
2
votes
2answers
326 views

Can’t write file in classic asp

Ok, it's been a while since I've worked with classic asp so I'm a bit rusty. Here's my question. I'm trying to write a file to the file system using FSO. The code below is very si …
0
votes
2answers
154 views

ASP FileSystemObject collection cannot be accessed by index

Am I going mad? I cannot find a way to get hold of the first file in a folder with the FileSystemObject (classic ASP). With most collections you'd think the index 0 or 1 might work …
3
votes
4answers
1k views

Exclusive File access to logfile with VBScript and Filesystemobject

Need help with this one. I have a VBS script that currently writes to a logfile. This script can be kicked off my multiple simultaneous processes so now I'm worried about concurr …