Hi Doyle:
Thanks for this great, as usual, tool and code.
Here's a bit of cosmetics that you might want to attend to.
In Menu Maker 2.0, mm2.bas lines 45 through 48
DIM icex AS INITCOMMONCONTROLSEX
icex.dwSize = sizeof(INITCOMMONCONTROLSEX)
icex.dwICC = ICC_TREEVIEW_CLASSES
InitCommonControlsEx(&icex)
are OxBow Code.
The code for initializing ICC_TREEVIEW_CLASSES is emitted in BCX_InitGUI.
Andreas Guenther's Treeview demo in the GUI_Demos also contains this superfluous code.
Thanks Robert, I did not know this. I don't tend to look at the generated code, it just works. (tm) 
I removed it from the mm2.bas code, looked at the cpp code and saw the InitCommonControlsEx code. You guys are always looking ahead, thanks.
Seems I have a lot of code to change! Appreciate the heads up.
Doyle
These common control classes are in the BCX 8.0.7 code at
line 33979. They are automatically emitted when associated BCX functions are used.
ICC_LISTVIEW_CLASSES
0x00000001
Load list-view and header control classes.
ICC_TREEVIEW_CLASSES
0x00000002
Load tree-view and tooltip control classes.
ICC_BAR_CLASSES
0x00000004
Load toolbar, status bar, trackbar, and tooltip control classes.
ICC_TAB_CLASSES
0x00000008
Load tab and tooltip control classes.
ICC_UPDOWN_CLASS
0x00000010
Load up-down control class.
ICC_PROGRESS_CLASS
0x00000020
Load progress bar control class.
ICC_USEREX_CLASSES
0x00000200
Load ComboBoxEx class
ICC_DATE_CLASSES
0x00000100
Load date and time picker control class
These common control classes are not automatically emitted and the coder
is responsible for adding them in the code. ICC_ANIMATE_CLASS
0x00000080
Load animate control class.
ICC_COOL_CLASSES
0x00000400
Load rebar control class.
ICC_HOTKEY_CLASS
0x00000040
Load hot key control class.
ICC_INTERNET_CLASSES
0x00000800
Load IP address class.
ICC_LINK_CLASS
0x00008000
Load a hyperlink control class.
ICC_NATIVEFNTCTL_CLASS
0x00002000
Load a native font control class.
ICC_PAGESCROLLER_CLASS
0x00001000
Load pager control class.
ICC_STANDARD_CLASSES
0x00004000
Load one of the intrinsic User32 control classes. The user controls include button, edit, static, listbox, combobox, and scroll bar.
ICC_WIN95_CLASSES
0x000000FF
Load animate control, header, hot key, list-view, progress bar, status bar, tab, tooltip, toolbar, trackbar, tree-view, and up-down control classes.