Can't Connect wxChoicebook

BlitzMax Forums/Brucey's Modules/Can't Connect wxChoicebook

MOBii(Posted 2015) [#1]
I only point out wxChoicebook, not really important when wxNotebook is Working OK

wxNotebook
ConnectAny(wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED, OnTAB) ' 802

wxChoicebook
ConnectAny(wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED, OnTAB) ' -802 Not Working

1. I can't connet wxChoicebook to event
2. the wxChoicebook dropdownbox stretch out when parent window resize with dragging the window with the mouse, I can't manually stretch out the dropdownbox with: SendSizeEvent() Or SetPosition(-1, -1)
I can set the parent window.width :- 1 and when set back window.width :+ 1 to stretch the dropdownbox so point 2 is not really a problem!

Edited:
Ja when manually changing tab I CAN'T trigger a function call!


Henri(Posted 2015) [#2]
wxChoiceBook is a bit of an oddball for me cause same could be achieved with combobox and panels, but you are correct as the event doesn't seem to respond. Hmm...

-Henri