how to write information into text boxes after GUI runs?

3 次查看(过去 30 天)
I am trying to write strings into a text box after the GUI starts running. i tried to use 'set' command, this is what i have
set(hObject, 'String', input_folder_name)
so the input_folder_name is a user inputted variable. i put this command line in the function created when i made the text box. can anyone tell me where i did wrong? Thanks

采纳的回答

Paulo Silva
Paulo Silva 2011-9-7
Put the code inside the OpeningFcn
set(handles.text1, 'String', input_folder_name)
%text1 is the name of the textbox, you might need to change it
  3 个评论
Paulo Silva
Paulo Silva 2011-9-8
If the Ok is a pushbutton you just need to put the code inside that pushbutton callback

请先登录,再进行评论。

更多回答(0 个)

类别

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