Problème avec EVT_CHAR [wxWidget] - C++ - Programmation
Marsh Posté le 28-03-2005 à 17:42:07
en utilisant :
EVT_TEXT(id, func)
Respond to a wxEVT_COMMAND_TEXT_UPDATED event, generated when the text changes. Notice that this event will always be sent when the text controls contents changes - whether this is due to user input or comes from the program itself (for example, if SetValue() is called)
avec ca tu vas recup le contenu complet je pense
Marsh Posté le 26-03-2005 à 21:26:23
Hello,
J'ai un wxTextCtrl sur le quel il y a un évènement EVT_CHAR(fct)
Voici le contenu de "fct":
void fct(...){
wxString txt = TextCtrl->GetValue();
}
Le problème c'est que "txt" contient tout ce qui se trouve dans le TextCtrl sauf le dernier caratère que l'ont bien de tapper, pourquoi ?
Merci.