Search found 42 matches

by automatix_md
Thu Mar 09, 2006 12:17 pm
Forum: C++ Development
Topic: wxIFM as dll
Replies: 3
Views: 1255

wxIFM as dll

i know this post is a little missplaced here but has anybody got wxIFM 1.0.5 compiled as dll ? i didn't get up to work, i got unresolved symbols

any ideas ?

i anyone has done it i will post more info about the symbols if nessesary

thx lars
by automatix_md
Thu Feb 23, 2006 11:33 am
Forum: C++ Development
Topic: remove all Childframes explicit in MDIParentframe dtor
Replies: 1
Views: 537

No one an idea? Or impossible? :cry:
by automatix_md
Wed Feb 22, 2006 2:56 pm
Forum: C++ Development
Topic: remove all Childframes explicit in MDIParentframe dtor
Replies: 1
Views: 537

remove all Childframes explicit in MDIParentframe dtor

does any one knows how i can remove the childframes of an MDIParentFrame explicitly in dtor. i know this is done implicitly by dtor but i need to do it in a strict order. Because i use wxaui and call in dtor of the parentframe the wxFrameManager.UnInit() method but in dtor of child frames i still ne...
by automatix_md
Wed Feb 22, 2006 10:47 am
Forum: C++ Development
Topic: MDI and Statusbar and MenuItem
Replies: 0
Views: 412

MDI and Statusbar and MenuItem

hi there ... i trying to build an MDI app, so no problem except how can I get it to work, that the help strings of the menu items of MDIChildframes will be displayed on the statusbar of the MDIParentframe? If I Append MenuItem like normal: fileMenu->Append(EditorFrame::idMenuSave, _("&Save\...
by automatix_md
Thu Feb 16, 2006 2:33 pm
Forum: C++ Development
Topic: wxSpinCtrl
Replies: 2
Views: 931

yes this could work thx :D
by automatix_md
Thu Feb 16, 2006 2:00 pm
Forum: C++ Development
Topic: wxSpinCtrl
Replies: 2
Views: 931

wxSpinCtrl

How can i set the wxTextCtrl component of wxSpinCtrl to be read only?
May be I'm blind or stupid but don't found anything in doc.

thx

lars
by automatix_md
Thu Feb 16, 2006 1:44 pm
Forum: C++ Development
Topic: wxBoxSizer(wxHORIZONTAL) in wxFlexGridSizer
Replies: 4
Views: 1619

So I had a look on you code - and unfortunately i don't know what could be wrong - looks good - so I did something similarly with a RAD Tool and sorted the code a little void bla::ControlCreation() { bla* itemPanel1 = this; //the top sizer of the panel wxBoxSizer* itemBoxSizer2 = new wxBoxSizer(wxVE...
by automatix_md
Thu Dec 22, 2005 7:33 am
Forum: C++ Development
Topic: How to veto an EVT_LIST_ITEM_DESELECTED event?
Replies: 9
Views: 2626

I'm sorry to hear that -- whish I could help you little bit more And yes, now I see i change the logic -- i'm yust counting the visible chars of the string i forgot the string-terminiation-char :oops: my mistake-- sorry -- do you realy need a wxListCtrl -- may be you could use a wxTreeCtrl or some o...
by automatix_md
Wed Dec 21, 2005 2:58 pm
Forum: C++ Development
Topic: How to veto an EVT_LIST_ITEM_DESELECTED event?
Replies: 9
Views: 2626

so i have checked it under windows it won't work in the way i want.. so i decided to make an work around .. but it isn't lovely until now : so the code will do nearly what you wan't i hope but in some stupid resents the eventhandlers do the stuff not realy in the way i want :x -- so they recongnize ...
by automatix_md
Wed Dec 21, 2005 12:20 pm
Forum: C++ Development
Topic: How to veto an EVT_LIST_ITEM_DESELECTED event?
Replies: 9
Views: 2626

yes i did and it works fine for me..

what results did you get
by automatix_md
Tue Dec 20, 2005 2:26 pm
Forum: C++ Development
Topic: How to veto an EVT_LIST_ITEM_DESELECTED event?
Replies: 9
Views: 2626

here it is: void CListCtrlTestDlg::onItemDeselected(wxListEvent & event) { wxString s = m_text->GetValue(); //save data long itemIndex = event.GetIndex(); wxString itemText = event.GetText(); if (!(s.length() % 2)) { wxMessageDialog messageDialog(this, "Only strings of odd length!", &q...
by automatix_md
Tue Dec 20, 2005 1:55 pm
Forum: C++ Development
Topic: How to veto an EVT_LIST_ITEM_DESELECTED event?
Replies: 9
Views: 2626

What you want to to will not work because both events are thrown after the changing is done: see docu EVT_LIST_ITEM_SELECTED(id, func) -- The item has been selected. EVT_LIST_ITEM_DESELECTED(id, func) -- The item has been deselected. may be you need to plug your own event - into the event stack? but...
by automatix_md
Thu Dec 15, 2005 10:06 am
Forum: C++ Development
Topic: getting frame pointer by given frame id
Replies: 2
Views: 885

So it was a silly question :oops: -- of cause it will -- i'm only to stupid to find the method --- thanks a lot :D
by automatix_md
Thu Dec 15, 2005 9:11 am
Forum: C++ Development
Topic: getting frame pointer by given frame id
Replies: 2
Views: 885

getting frame pointer by given frame id

Hi there maybe it's a silly question: But I'm have not found an soulution until now. What I want to do is getting the pointer of a wxMDIChildFrame by passing its wxWindowId. I created my own projectManager wihch is also an wxMDIChildFrame on this frame I have a wxTreeCtrl which schows the open files...
by automatix_md
Thu May 19, 2005 11:21 am
Forum: C++ Development
Topic: making config files
Replies: 2
Views: 855

No I don't, sorry if explain it falsely, I try to explain more well. In example of browser call on UNIX-like systems, I use wxExecte() with the command i would enter from shell ( konqueror http://www.something.net). The function get the full url an create together with the browser command the cmd pa...