How to show my output in regular time sequence at app designer?
1 次查看(过去 30 天)
显示 更早的评论
I have four edit field to display my output when I push button.
All edit field have value to display on, and I when to show them in regular sequence.
It mean, when I push button to show output, first editfield1 value will shown first, ane editfield2 value will second.... like that.
It's too hard find that function:(
I just want to know time function that can show value more lately just one second.....
Please help me!
0 个评论
回答(2 个)
Cameron B
2019-12-16
t = 0.5; %time in seconds
app.EditField1.Value = 4; %your value for the first edit field
pause(t)
app.EditField2.Value = 3; %your value for the second edit field
pause(t)
app.EditField3.Value = 2; %your value for the third edit field
pause(t)
app.EditField4.Value = 5; %your value for the fourth edit field
I'm not sure if this is what you're referring to, so please let me know if it isn't.
0 个评论
Sahithi Kanumarlapudi
2019-12-17
The above mentioned solution might work in your case. Just make sure ‘pause’ setting is enabled. You can enable it using
pause('on')
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!