Clear Filters
Clear Filters

How to retrieve data entered in an edit box

5 views (last 30 days)
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?

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 11 Mar 2013
Edited: Azzi Abdelmalek on 11 Mar 2013
s=str2double(get(handles.editboxname,'string'))
% editboxname is the tag of your edit box.
  9 Comments
Azzi Abdelmalek
Azzi Abdelmalek on 11 Mar 2013
Edited: Image Analyst on 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.

Sign in to comment.

More Answers (0)

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!