J
jeff
Hi,
If all you want to do is read "readme.txt"
try having your command button call this:
Sub OpenMyFile()
Open "C:\Readme.txt" For Input As #1
Line Input #1, A$
MsgBox "You read in " & A$
Close #1
End Sub
jeff
If all you want to do is read "readme.txt"
try having your command button call this:
Sub OpenMyFile()
Open "C:\Readme.txt" For Input As #1
Line Input #1, A$
MsgBox "You read in " & A$
Close #1
End Sub
jeff
commandbutton1, stored in S:\readme.txt-----Original Message-----
as silly as this may seem...
all i want to do is open a text file, linked to