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
Search found 4 matches
- Fri Jun 27, 2008 9:33 am
- Forum: C++ Development
- Topic: focus in wxGrid cell
- Replies: 6
- Views: 807
- Wed Jun 25, 2008 12:55 pm
- Forum: C++ Development
- Topic: focus in wxGrid cell
- Replies: 6
- Views: 807
- Tue Jun 24, 2008 1:03 pm
- Forum: C++ Development
- Topic: Displaying í and the other latin chars..how?
- Replies: 7
- Views: 1365
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 characters. A second thing that could help...
- Fri Jun 20, 2008 10:09 am
- Forum: C++ Development
- Topic: focus in wxGrid cell
- Replies: 6
- Views: 807
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...