cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
Getting output in a new screen?
Getting output in a new screen?
Jul 5, 2012 at 3:48pm UTC
elb5230
(17)
How do you get it so the user inputs information in one screen then when they are done the screen only shows the output information (in this case a contact card) without seeing the info they entered on top?
Jul 5, 2012 at 4:12pm UTC
ResidentBiscuit
(4459)
What is your "screen"? Console/terminal or an actual window?
Jul 5, 2012 at 5:44pm UTC
Callum5042
(183)
If you mean clear the screen you could use
system(
"CLS"
);
but it is highly unrecommended that you do it this way.
There is another more secure way to do it but I can't remember it from the top of my head. I'm sure someone on the forums knows the code :)
Jul 5, 2012 at 5:52pm UTC
TheIdeasMan
(6817)
There is an article on this site all about clear screen.
If you mean output to a different console, well that would be tricky. You might need a GUI app for that.
Topic archived. No new replies allowed.