-
DOS app needs help...
I know this might be simple for you but it's not for me...
I'm makeing a DOS exe for a project
How do I get my app to use the same line for different text fields?
i.e. put, value1 then clear the text and put value2 on that line and so-forth
like in the Windowz setup screen for dos when it says "Copying: (File name here)" and the only thing that changes is the file name...
-
Writing \h to the console (or is it \b?) causes the output position to take one step back, so subsequent outputs will overwrite what's there.
This doesn't work once you wrote a newline though. From then on, you need platform-specific ways of setting the cursor position.
-
it's under windows xp pro
-
Look up console functions in MSDN.