how to set value in edit text box.

24 次查看(过去 30 天)
shahid
shahid 2012-8-30
i am having a problem i want to disply a number 'e.g 1000' in edit text box without using any pushbutton or anything....
i am writing this code in the call back function of edit_text but it doesn't give me the result.tag is edit1.
a=1000;
set(handles.edit1,'string',a);
please tell me how i can do that........waitng for your response reply sooon
Shahid Imran

回答(3 个)

Azzi Abdelmalek
Azzi Abdelmalek 2012-8-30
编辑:Azzi Abdelmalek 2012-8-30
a=1000; set(handles.edit1,'string',num2str(a));
% a is double, you need to convert it to string
  1 个评论
VALARMATHY K
VALARMATHY K 2017-10-16
can you please help me to do this
a=get(handles.edit2, 'string');
z=str2num(a); b= z+10000;
c = b;
d='Your Balance is: %g', c;
set(handles.edit1,'string',d);
msgbox( sprintf('Your Balance is %g', c) );
in my message box i am getting correct output but i want to do this in edit text box

请先登录,再进行评论。


zakaria
zakaria 2014-6-3
post from 2012, the s of 'string' have to be Uppercase
a=1000; set(handles.edit1,'String',a);

Camilo Cárdenas
Camilo Cárdenas 2022-3-16
Hi,
Somebody knows how to do it "set value in EditField" using Appdesigner?
Thankyou!

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by