Hi,
First off I like Dev-C++ a lot. Thanks for making it :)
I have what is hopefully a simply request. When
writing command line programs (especially with glut), I
often pipe a file instead of using stdin. eg:
myprogram < testdata.txt
Right now, I have to open a command line and execute
the above command. I can't find a way to override
stdin in the editor. I would really like to use execute
& run in the editor to save myself some time. I have
tried adding "< testdata.txt" to the parameters, that
does not work, even if the full path is with the file
name. It still waits for the stdin when initializing
in my program.
Thanks,
Nick