Azzera filtri
Azzera filtri

How to retrieve data entered in an edit box

4 visualizzazioni (ultimi 30 giorni)
I have an edit box in my GUI. User inputs a number into the editbox and then pushes a pushbutton. when the pushbutton is pressed an external function is called. for the external function i need the number entered in the editbox. How can i used 'handles' to retrieve the data input in the edit box?

Risposta accettata

Azzi Abdelmalek
Azzi Abdelmalek il 11 Mar 2013
Modificato: Azzi Abdelmalek il 11 Mar 2013
s=str2double(get(handles.editboxname,'string'))
% editboxname is the tag of your edit box.
  9 Commenti
Azzi Abdelmalek
Azzi Abdelmalek il 11 Mar 2013
Modificato: Image Analyst il 11 Mar 2013
The code
user_speed=str2double(get(handles.EnterSpeed,'string'));
You should put it in the pushbutton callback, NOT the edit field callback.
Achchuthan Ganeshanathan
Achchuthan Ganeshanathan il 11 Mar 2013
thankyou that has done the trick

Accedi per commentare.

Più risposte (0)

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!

Translated by