xwSplitterWindow with XRC

BlitzMax Forums/Brucey's Modules/xwSplitterWindow with XRC

matibee(Posted 2009) [#1]
Hi all,

I think the XRC loading code is missing for a wxSplitterWindow. Or have I broke something?

I've got the XRC from a wxFormBuilder file, but when I try to load it generates the error "No handler found for XML node 'object', class 'wxSplitterWindow'!"

What would be an alternative method for slicing up a screen into dialog / view?

Cheers
Matt


Brucey(Posted 2009) [#2]
It should be there. You will need to - Import wx.wxSplitterWindow.
(The reason here is that either you import all the controls you need individually, or you end up default Importing everything - which would make your binary very large indeed).


matibee(Posted 2009) [#3]
Yep that was it Brucey.

Thanks