hi all,
i'm new of wxWidgets, and i'm wandering if in the event table of a class (i.e. ChildFrame class, instantiated with "new" by a MainFrame), i can assign to an event a public MainFrame class method. Compiler let me do this, but i would like to know if it's a correct use of wxWidgets events callbacks.
Many Thanks
angelo
Events callback Topic is solved
Events callback
spectrum
event tables let you only call event callbacks for the object that table is for - if you want to use a callback method in another object it is best to use Connect (http://wxwidgets.blogspot.com/2007/01/i ... nnect.html)