I want to create a class to create ownder-drawn menus. I just dont know what data type I should use. How would I control my menus from the class. Should the class be of type HMENU? Thanks :)
Amon Ra
Printable View
I want to create a class to create ownder-drawn menus. I just dont know what data type I should use. How would I control my menus from the class. Should the class be of type HMENU? Thanks :)
Amon Ra
A class is it's own type....
Code:class MyMenuThingy{
public:
MyMenuThingy();
~MyMenuThingy();
HMENU CreateMenu();
//etc..
private:
//private stuff here.
};
Ok, boss :) thanks :)
Amon Ra