i've created 2 editbox with visibility off at run time,i want to turn the visibility back on for both editbox by pushbutton,the visibility should be set back on for 1 box first the the other 1 after another mouse click

 採用された回答

Image Analyst
Image Analyst 2013 年 11 月 25 日

0 投票

If the unsaid question is "How do I do this?", then just do
set(handles.edit1, 'visible', 'on'); % or 'off'
set(handles.edit2, 'visible', 'on'); % or 'off'
in the callback of the pushbutton.

1 件のコメント

Masilani
Masilani 2013 年 11 月 26 日
thanks for the answer

サインインしてコメントする。

その他の回答 (0 件)

質問済み:

2013 年 11 月 25 日

コメント済み:

2013 年 11 月 26 日

Community Treasure Hunt

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

Start Hunting!

Translated by