Search found 4 matches

by michel
Fri Jun 27, 2008 9:33 am
Forum: C++ Development
Topic: focus in wxGrid cell
Replies: 6
Views: 1670

Hello bloodlee,

The behavior is not correct : when user click on a button , the associated action must be called !

I will search a way to force the call...

Michel
by michel
Wed Jun 25, 2008 12:55 pm
Forum: C++ Development
Topic: focus in wxGrid cell
Replies: 6
Views: 1670

Yes it is correct : clic button when a cell is currently edited.

I have attached an example.

Michel
by michel
Tue Jun 24, 2008 1:03 pm
Forum: C++ Development
Topic: Displaying í and the other latin chars..how?
Replies: 7
Views: 7499

hello, In windows console, you can specify the codepage with the command "chcp" : in program : system("chcp 1252"); _setmbcp(1252); printf("García"); system("pause"); be sure to use a TrueType font (see the console properties) that is enable to display wide ch...
by michel
Fri Jun 20, 2008 10:09 am
Forum: C++ Development
Topic: focus in wxGrid cell
Replies: 6
Views: 1670

focus in wxGrid cell

Hello, I have the following trouble : In a dialogbox , when I edit a cell in a wxGrid and then clic a button, the button handler is not called. After code analysing, I found that when button try to get the focus, it sent a KillFocus to the the control text, but unfortunality, a SetFocus is called to...