Page 3 of 3

Posted: Tue Jan 31, 2006 7:20 pm
by Vexator
AAAARGH
don't get me wrong jorg, but your server really SUCKS. i've been trying for half an hour now to access your api docs.. it took me the same amount of time yesterday until i could download your source. i've got a 6mbit connection, so that can't be the problem Oo

still thanks for your effort

Posted: Wed Feb 01, 2006 8:09 am
by Jorg
You are the second person that has problems with otherwise a very stable provider. I think there is a technical problem.. Anyway, the Doxygen documentation can be generated from the sources, if you would like I can even send it to you.

I will email the helpdesk with this issue as I think something is wrong there.

- Jorgen

Posted: Tue Apr 11, 2006 4:31 am
by Thelvyn
This is actually unrelated to your code but I ran into the ESP problem a week ago and it had something to do with the event table.

If I commented out the DECLARE_EVENT_TABLE() then the problem
went away, even if the event table was empty it did the same thing, complained that ESP was not properly saved across the call.
At least I assume thats what he said since I cant see his images only your response.

I tried downloading and recompiling wxwidgets, downloaded newer platform sdk, downloaded newer version of stlport. deleted all build related files.

I never did figure out what the problem was, samples compiled and worked fine, other apps I wrote worked fine, I finally just made a new project and moved the (SAME) code over and it went away,very wierd.

So the question is did you ever discover what was causing that?

Posted: Mon Jun 05, 2006 10:55 am
by Vexator
i downloaded version 1.10 and i still have a question:

on your screenshots you have multiple controls aligned horizontally.. how can i do this (without using a panel to place everything on)? when i append multiple windows, they always get positioned one below the other.. couldn't find sth in the docs (which still seem to be for 1.08?)

thanks in advance, great work! :D

Posted: Mon Jun 05, 2006 11:59 am
by Jorg
Hi, you must use a panel for the controls to be on. There will always be one entry per child for wxWindow item, so to do that you must;

- Create a wxPanel
- Preferrably a sizer
- Add your controls to the panel, call Fit / Layout
- Add the panel to the treemultictrl.

Make sure the panel is child of the wxTreeMultiCtrl.

With regards,
- Jorgen

Posted: Mon Jun 05, 2006 12:24 pm
by Vexator
mh ok but this way i can't use the wxTMC_SPAN_WIDTH feature, right?

Posted: Mon Jun 05, 2006 2:20 pm
by Jorg
You should be able to use that, if you are using a sizer. it will dynamically size the panel to fill the whole row.

Regards,
- Jorgen