Hi guys, a simple problem. My text file contains 1 line of data, i simply want access to open the text file and dump the contents into strtemp. My code below doesn't seem to do that. Please can someone help?
TmpFile = "c:\results.txt"
Open TmpFile For Output As #1
Input #1, strtemp
Close #1
TmpFile = "c:\results.txt"
Open TmpFile For Output As #1
Input #1, strtemp
Close #1