MATLAB: How to write information into text boxes after GUI runs

textboxes

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

Best Answer

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