Re: [Gambas-user] Accessing Project Data in a Text File

2014-02-10 Thread Louis W. Adams, Jr.
> It is NOT for your program's volatile data! In fact, you cannot write to > one of these files from within the program (but you can from the IDE.) The links you suggested were helpful, thanks. The data in my file is always used when the program is run, program constants you could say. I placed

Re: [Gambas-user] Accessing Project Data in a Text File

2014-02-09 Thread Bruce
On Sun, 2014-02-09 at 22:06 -0800, Louis W. Adams, Jr. wrote: > > Are you talking about your project at design time in the IDE or when your > > project runs, i.e. do you want to look at the file or does your program > > need > > it at run time? I guess the second but it's not clear to me... > > I

Re: [Gambas-user] Accessing Project Data in a Text File

2014-02-09 Thread Louis W. Adams, Jr.
> Are you talking about your project at design time in the IDE or when your > project runs, i.e. do you want to look at the file or does your program > need > it at run time? I guess the second but it's not clear to me... I added my data file (a text file) to the Data section of the project during

Re: [Gambas-user] Accessing Project Data in a Text File

2014-02-09 Thread Tobias Boege
On Sat, 08 Feb 2014, Louis W. Adams, Jr. wrote: > I have a project with a text file associated with it. So there is a tab > displaying the data imported into the project (?) from the text file. How > do I access the data? Since the project is already aware of the data, I > wouldn't think that it

[Gambas-user] Accessing Project Data in a Text File

2014-02-08 Thread Louis W. Adams, Jr.
I have a project with a text file associated with it. So there is a tab displaying the data imported into the project (?) from the text file. How do I access the data? Since the project is already aware of the data, I wouldn't think that it's necessary to Open the file and Read its contents as w