displaying contents while entering in text box only not after pressing enter key
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
i have a text box if i type a then a should be displayed without pressing the enter key
similarly if i type ab then ab should be displayed without pressing the enter key
how do i write callback for this
Thanks in advance
0 Commenti
Risposta accettata
Image Analyst
il 30 Ago 2013
If you use GUIDE and double click your text edit box you'll bring up the property inspector. In there you'll see a callback for the key press function. Click the icon for that to go to the code for that. In there, get the text from the edit box and do something with it, such as display it in a static text label:
editTextString = get(handles.editText, 'String');
set(handles.staticText, 'String', editTextString);
0 Commenti
Più risposte (1)
Jan
il 30 Ago 2013
This seems like the standard for uicontrol of type edit. Please explain exactly, what you mean by "text box".
Perhaps you mean a text object (see "help text"), which is updated by the WindowsKeyPressFcn, which is a property of the parent figure.
2 Commenti
Vedere anche
Categorie
Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!