Search found 147 matches

by asadilan
Thu Nov 17, 2011 8:57 pm
Forum: C++ Development
Topic: over-ride button
Replies: 3
Views: 2479

Re: over-ride button

think u have to set a thread for these 2 operations.
1 for the loop, one for the button
try wxThread
by asadilan
Thu Nov 17, 2011 7:02 pm
Forum: C++ Development
Topic: wxFileDialog access violation problem [newbie]
Replies: 4
Views: 1654

Re: wxFileDialog access violation problem [newbie]

i think when its called from the outside, you have to change the filedialog parent to the class calling. i think this is what you have. class A - Class B - wxFileDialog its giving you an error when filedialog is called from class A but not if its called from class B. i think when you call filedialog...
by asadilan
Wed Nov 16, 2011 8:50 pm
Forum: C++ Development
Topic: Windows and sub-windows
Replies: 7
Views: 2746

Re: Windows and sub-windows

moveable second window.
try wxAUI
by asadilan
Wed Nov 09, 2011 10:27 pm
Forum: C++ Development
Topic: wxString Bug?
Replies: 1
Views: 1018

wxString Bug?

param1 = "My name is (11)";
int test = param1.Find("(");
int length = param1.Len();
param1 = param1.Mid(param1.Find("(")+1, param1.Len() - param1.Find('(')-1);

i am expecting param1 to be 11
but its 11) ;

tried removing -1 still the same.
clue?

Thanx
by asadilan
Wed Nov 09, 2011 4:15 pm
Forum: C++ Development
Topic: convinience classes
Replies: 1
Views: 809

convinience classes

Hey,

besides going through each entry in the manual, is there a grouping for convinience classes such wxTextEntryDialog?
i am in particular interested in small dialog containing 2 radio buttons.
Not diff to create, but it can save me time.
by asadilan
Mon Nov 07, 2011 8:35 pm
Forum: C++ Development
Topic: wxGrid
Replies: 1
Views: 690

Re: wxGrid

1. SetReadOnly will prevent user from editing. 2.EVT_GRID_CELL_CHANGE its available. EVT_GRID_CMD_CELL_CHANGE 3. GetSelectedCells would give you grid coord. 4. not sure what you are trying to do, but the grid should be drawn automatically without u needing to draw in onpaint function. maybe you can ...
by asadilan
Mon Nov 07, 2011 8:30 pm
Forum: C++ Development
Topic: event
Replies: 3
Views: 1102

Re: event

I wonder why i didnt think of that.
Thanx.. just return true.
by asadilan
Mon Nov 07, 2011 4:49 pm
Forum: C++ Development
Topic: event
Replies: 3
Views: 1102

event

Hi All, I was wondering if wxEvent have a return status. after processevent is executed, process event would return a true or a false to notify the calling function if indeed processevent have been called. or i could just create another event and send that event once my other event is processed. Ide...
by asadilan
Tue Nov 01, 2011 9:20 pm
Forum: C++ Development
Topic: wxArchiveFile class
Replies: 2
Views: 914

Re: wxArchiveFile class

wxZipEntry
wxZipInputStream
wxZipNotifier
wxZipOutputStream
by asadilan
Thu Oct 27, 2011 8:19 pm
Forum: C++ Development
Topic: scrolling in wxtreelistctrl
Replies: 1
Views: 559

Re: scrolling in wxtreelistctrl

It seems this work.
create a variable wxtreeitemid then do getnext/getprev combine it with scrollto (wxtreeitemid)
by asadilan
Thu Oct 27, 2011 5:30 pm
Forum: C++ Development
Topic: scrolling in wxtreelistctrl
Replies: 1
Views: 559

scrolling in wxtreelistctrl

Hi All,

Has any of you have experience with scrolling the view up/down as you drag an item up/down?
I cant make the view scroll up/down.

Thanx for the help
by asadilan
Wed Oct 26, 2011 7:06 pm
Forum: wxCode
Topic: treelistctrl 1104 and memory leak
Replies: 1
Views: 5139

treelistctrl 1104 and memory leak

I hve an experience with the latest treelistctrl (1104).
After upgrading from earlier version, the treelistctrl cause memory leak.
is this a known phenomena ?
the earlier version didnt cause memory leak.
Thanx
by asadilan
Wed Oct 26, 2011 6:32 pm
Forum: C++ Development
Topic: TextCtrl
Replies: 3
Views: 1255

Re: TextCtrl

thanx
i guess this would involve redrawing and stuffs?
and that makes it difficult for me just to get autocomplete function for 2.8.11?
by asadilan
Wed Oct 26, 2011 5:20 pm
Forum: C++ Development
Topic: TextCtrl
Replies: 3
Views: 1255

TextCtrl

Hi All,

I was wondering if you guys know how i can do text ctrl like the chrome url edit?
ie. once i type a text, it will give me a list of 5 text entered.

Thanx
by asadilan
Tue Oct 11, 2011 9:27 pm
Forum: C++ Development
Topic: sizing frame
Replies: 3
Views: 1652

Re: sizing frame

thanx for the answer.