Hi all,
I have an odd query. I have a tier 1 AppGameKit program that writes a series of integers to a text file using writeinteger. It's easy to read these back in with another program using readinteger. My problem is that I need to read them into a C++ program. I've been trying to use ifstream to read files created by my AppGameKit program, but it's not reading anything. I've tried changing it so that the integers are written with writeline, and then read by C++ with getline(). This doesn't work either - it's just returning blanks.
How can I write integers into a file in tier 1 AppGameKit that can be read by a C++ app? Is this possible at all?
Thanks for any ideas...