Home |
Search |
Today's Posts |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Colo - I'll give that a try as well and see how it goes!
Colo wrote in message ... Tammy, :) Because an ini file is just a text file, it can be read with Open statment. Code: -------------------- Sub test() Dim fn As Long Dim tmp As String fn = FreeFile 'Change here to the file path Open "c:\test.ini" For Input As fn Do While Not EOF(fn) Line Input #fn, tmp Debug.Print tmp Loop Close fn End Sub -------------------- --- Message posted from http://www.ExcelForum.com/ |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Reading from a text file | Excel Discussion (Misc queries) | |||
reading from another file and pasting to current file, "combobox" | New Users to Excel | |||
Help reading in a text file | Excel Programming | |||
Reading .csv file into array | Excel Programming | |||
Reading from file | Excel Programming |