link between edit text 1 and 2 when puch button has click

5 ビュー (過去 30 日間)
NURHANIDA
NURHANIDA 2014 年 5 月 13 日
コメント済み: NURHANIDA 2014 年 5 月 14 日
edit 1 at input 1 is 15, how when I click push button, the 15 will appear at edit2?

採用された回答

Sara
Sara 2014 年 5 月 13 日
in the edit1 callback save the variable inputted by the user in a variable:
handles.myvar = get(handles.edit1,'string');
guidata(hObject, handles);
in the pushbutton callback put:
set(handles.edit2,'string',handles.myvar)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by