|
-
Sep 1st, 2009, 04:30 PM
#3
Lively Member
Re: File I/O Tutorial
On this example, what would i need to do in order to read the file into an array last line first?
Dim strArray() As StringReDim strArray(0)Open "c:\autoexec.bat" For Input As #1 Do Until EOF(1) Line Input #1, strArray(UBound(strArray)) ReDim Preserve strArray(UBound(strArray) + 1) LoopClose #1
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|