add menu
-
hi, can any one plz tell me how to add menu's in win32 console application in Visual C++. Thanx in advance.
With a console application, what would you be adding the menu to?
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown
-
With a console application, what would you be adding the menu to?
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown
-
I think i understand what you are talking about, if you have ever seen the program Edit in MS-DOS you would see a menu, but honestly i dont know how to make one,
Archer282 wrote: ...if you have ever seen the program Edit in MS-DOS you would see a menu... Yep, remember it well. What most folks don't know is that the editor was actually qbasic.exe. Edit.com was used to call qbasic.exe and remove any programming-specific menu items. As far as how to do it, output to a console window using
printf()
. It's been over a decade since I've done any "console graphics" (e.g., colors, shadows, blocks, 'windows', x/y coordinates) but I'm sure there are still plenty of examples that can be Googled for.
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown