Dear Byo,
I am using wxSmith to embed a slider in a configuration dialog.
I have attched to the EVT_COMMAND_SCROLL which creates this code:
Connect(ID_SLD_MINUTES,wxEVT_SCROLL_TOP|wxEVT_SCROLL_BOTTOM|wxEVT_SCROLL_LINEUP|wxEVT_SCROLL_LINEDOWN|wxEVT_SCROLL_PAGEUP|wxEVT_SCROLL_PAGEDOWN|wxEVT_SCROLL_THUMBTRACK|wxEVT_SCROLL_THUMBRELEASE|wxEVT_SCROLL_CHANGED,(wxObjectEventFunction)&TimeDlg::OnMinutesChanged);
unfortunately the method is never called. If I add the "same" manually into the event table like:
BEGIN_EVENT_TABLE(TimeDlg,wxDialog)
EVT_COMMAND_SCROLL(ID_SLD_MINUTES, TimeDlg::OnMinutesChanged)
END_EVENT_TABLE()
...then it works.
Probably it_'s not a wxSmith issue... but just in case it is I'll report it here and do some further investigations...