how to set value in edit text box.

28 visualizzazioni (ultimi 30 giorni)
shahid
shahid il 30 Ago 2012
Risposto: Camilo Cárdenas il 16 Mar 2022
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

Risposte (3)

Azzi Abdelmalek
Azzi Abdelmalek il 30 Ago 2012
Modificato: Azzi Abdelmalek il 30 Ago 2012
a=1000; set(handles.edit1,'string',num2str(a));
% a is double, you need to convert it to string
  1 Commento
VALARMATHY K
VALARMATHY K il 16 Ott 2017
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

Accedi per commentare.


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

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

Categorie

Scopri di più su Characters and Strings in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by