I am trying to make a setup program in VB6 that will install all the files that are required for the program.
I use a CSV file to store data and read it using:
file="C:\users\admin\desktop\table.csv"
Open file For Input As fnum
However the EXE file cannot be executed on another laptop as I get the error "file not found
".
So: how to embed this CSV document into the .EXE file so that the program can run on any Windows PC?