Search found 3 matches

by Mike A
Mon Jan 30, 2006 10:32 pm
Forum: C++ Development
Topic: Software Registration
Replies: 8
Views: 2642

Software Registration

Not that I'm ready for this yet- but I was wondering what (if any) tools people are using to enable users to register your software.

Are there any comercial or shareware tools anyone can recommend?

Mike
by Mike A
Sun Jan 29, 2006 3:43 pm
Forum: C++ Development
Topic: wxTreeCtrl context menu
Replies: 2
Views: 1953

ahhh- that did the trick! Thank you so much for taking the time-


:D
by Mike A
Sun Jan 29, 2006 2:44 am
Forum: C++ Development
Topic: wxTreeCtrl context menu
Replies: 2
Views: 1953

wxTreeCtrl context menu

Hi- I am using a wxTreeCtrl and setup the context menu in the frame; like this: EVT_TREE_ITEM_MENU( ID_TREE_SPEC, Frame::OnTreeSpecItemMenu ) then when I do this: void Frame::OnTreeSpecItemMenu( wxTreeEvent& event ) { wxMenu* menu = new wxMenu; menu->Append(wxID_OPEN, wxT("Open")); Pop...