how to create window program in c++.please explain.
Answer Posted / siddarth
generally for GUI related topics we go for the VC++ where
there are all sorts of GUI components and events are present
for c++,we can go for the concept of mouse programming for
creating windows,buttons etc
you can greate buttons by drawing rectangles present in
library "graphics.h" and by using mouse registers ax,bx,cx,dx
present in UNION REGS in dos.h,
etc............
heres the link
http://www.cprogrammingreference.com/Tutorials/Advance_Tutorials/mouseprogramming.php
ALL THE BEST
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
How do I write a c++ program?
How do you flush std cout?
What are register variables?
Is c++ the best programming language?
What is the best c++ book for beginners?
Difference between overloading vs. Overriding
What is a pointer how and when is it used?
Can I learn c++ without c?
What is the purpose of templates in c++?
What is copy constructor? Can we make copy constructor private in c++?
Will the following program execute?
What are the advantages of c++? Explain
Why can’t you call invariants() as the first line of your constructor?
how to access grid view row?
Can the operator == be overloaded for comparing two arrays consisting of characters by using string comparison?