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
Can member functions be private?
what are the characteristics of Class Members in C++?
write a corrected statement so that the instruction will work properly. if (4 < x < 11) y = 2 * x;
What is the main purpose of c++?
What is the type of 'this' pointer? When does it get created?
What is the use of data hiding?
Define token in c++.
What does new in c++ do?
What does h mean in maths?
What does ctime() do?
Can static member variables be private?
What is the disadvantage of using a macro?
declare an array of structure where the members of the structure are integer variable float variable integer array char variable access all elements of the structure using dot operator and this pointer operator
If all is successful, what should main return a) 0 b) 1 c) void
Can there be at least some solution to determine the number of arguments passed to a variable argument list function?