How to open read a text file letter by letter without using "Scripting" object (1 Viewer)

accesser2003

Registered User.
Local time
Today, 08:27
Joined
Jun 2, 2007
Messages
124
How to open read a text file letter by letter without using "Scripting" object

I have a text file and I need to open it for reading and read it letter by letter without using the CreateObject("Scripting.FileSystemObject") statement.

I need to know if I reach the end of the file also.

Thanks & Regards,
 

DCrake

Remembered
Local time
Today, 06:27
Joined
Jun 8, 2005
Messages
8,632
Simple Software Solutions

You need to go down the Open MyFile For Input As #1 route.

Where Myfile is the path and file name of the desired text file.

Doing a search in Access will give you good examples.

CodeMaster::cool:
 

Users who are viewing this thread

Top Bottom