Anthony:
microsoft has implemented this feature in MS Word for a few menus: certain menus of the "drawing" toolbar have a small top stripe that turns the menus into floating toolbars
Tip:
You can open your control (.dll, or .ocx) in OLE Viewer (run OLE Viewer, choose "View Type Library.." from menu), where you can see all Components with their CLSID's implemented in the...
Depends on what you're doing. Typically, VC++ displays assembly only if a) there's no source available, or it doesn#t find the source code, or b) you explicitely requested this.
a) kill & restart explorer process. To kill it, do Start / Shutdown... (so the Shut down / restart etc. dialog box opens). In the dialog box, hold ctrl-alt-shift, and...
Yes, Icon *Resources* can be in multiple sizes & color depths, but when loaded and as a HICON, it has a definite size & depth (a MSDN suggests it's internally represented as some DDB's).
I already thought of that - but I was looking for a better way. As much as I understand the documentation, the bitmaps are copies of the icon, I'd like to avoid that...
Ahh... the dreaded header Control again...
First, the header is a child window of the list, so ON_NOTIFY_REFLECT is bad... the Clazz Wizard generates wrong code here.
Hi,
For correct window positioning (save&restore), it is higly recommended to use GetWindowPlacement / SetWindowPlacement. These functions take care of various problematic issues (like Z order, and...
Well.. if you didn't hear of binary numbers before, perhaps this information is enough: If you add the ES_NUMBER style using '+', the result is wrong if the style was already set. Using '|',...
The '|' operator does an bitwise 'or'. In long terms c=a|b means:
- look at a and b in binary
- for each bit position: if the bit is set in a, or b, or both, set the bit in c, otherwise, clear...
Hi,
I'd say even if they should move the entire thing onto .NET, the Document/Object Model, and the interface will stay the same. And I don't think MS will drop COM completely - although it will be...