Bug in Firefly 3 toolbar?

Started by Wilko Verweij, December 02, 2009, 06:29:37 PM

Previous topic - Next topic

Wilko Verweij

Today I ran across what I believe may be a bug in Firefly 3. I imported a project I created in firefly 2 and all worked well except that the toolbar looked different (transparent). I checked the toolbar styles and the same ones were active as in ff2 (so the import itself was correct). Styles were _FLAT and _TOOLTIPS. However, when I compare the generated code, there is a difference. FF 2 says:
FF_hToolBar = CreateWindowEx(0, "ToolbarWindow32", _
                  "", 1442842880, 0, 0, 0, 0, hWndForm, _
                  IDC_MDIFORM_TOOLBAR, App.hInstance, ByVal %Null)
while Firefly 3 says:
    FLY_hToolBar = CreateWindowEx( 0, "ToolbarWindow32", _
                   "", 1451231488, 0, 0, 0, 0, hWndForm, _
                   IDC_MDIFORM_TOOLBAR, App.hInstance, ByVal %Null)
(note the third parameter).
Any suggestions?
Wilko