Philippe Lhoste wrote:
Robert, there is a toolbar, with icons in the native Windows version, but I never activate it... There is a menu item to show it.
Looking at the source, I see:

    ::SendMessage(hwndToolBar, TB_LOADIMAGES, IDB_STD_SMALL_COLOR,
                  reinterpret_cast<LPARAM>(HINST_COMMCTRL));

    TBADDBITMAP addbmp = { hInstance, IDR_CLOSEFILE };
    ::SendMessage(hwndToolBar, TB_ADDBITMAP, 1, (LPARAM)&addbmp);

So the toolbar seems to use stock Windows images (HINST_COMMCTRL) and one custom (IDR_CLOSEFILE) which is provided with SciTE sources (closefile.bmp).

Indeed, I was a bit confused by Robin's message, which wrote about MenuBar and generic GUI facelift.

Me too - thanks for clearing that up, Philippe! :)

However, as these then are not the classic resources stored in the executable, it will take a bit of coding to supply different icons... the Resource Hacker approach still won't work. :(

Robert Roessler
[EMAIL PROTECTED]
http://www.rftp.com
_______________________________________________
Scite-interest mailing list
[email protected]
http://mailman.lyra.org/mailman/listinfo/scite-interest

Reply via email to