show and get data in button callback at GUI

3 views (last 30 days)
Saeed
Saeed on 29 Jun 2014
Commented: Joakim Magnusson on 30 Jun 2014
Hello, I program a software in GUI. I need to show some data to user then get some other data from user. but I problem is this:
I need to show and get this data in While code in button callback function.
Please see my codes:
function button1_Callback(hObject, eventdata, handles)
while w>10
% calculate A here and then:
% I need show A to user and then get B.
% continue coding with B.
end
I want show a number to user and get an other number with GUI element (static text/ edit text box)
How I can do this? Is a popup page solution? How? or?
  1 Comment
Joakim Magnusson
Joakim Magnusson on 30 Jun 2014
Why don't you just show A in a static text box in the same window as your button1? And then the user can write B in an edit text box?

Sign in to comment.

Answers (1)

Image Analyst
Image Analyst on 29 Jun 2014

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!