Gui Pop Up Menu Problem

조회 수: 2 (최근 30일)
Edward
Edward 2012년 4월 22일
Hi, ive got a simple gui with just a pop up menu,
I want to set the value of the string for each element of the pop up menu within the gui program, so the strings can change, say for example if i wanted the menu to have selectable days of the week, but the top element of the menu says 'yesterday' and the following elements are days before that.
How do i refer to each element of the menu within a program?
[Merged duplicate question]
Hi im trying to write a gui with a pop up menu where i can change the string of each element within the program.
how do i refer to each string element of the pop up menu? for example with a regular array you refer to the 5th value as array(5), how do i refer to the 5th string of a pop up menu?
Thanks
  댓글 수: 2
Jan
Jan 2012년 4월 22일
Aaargh. I've tried to post an answer in the other thread some seconds ago. After submitting it, the thread has vanished and my answer also. I'm not motivated to type it again.
Please, Edward, do not double-post. It is tedious for the ones, who want to help you.
Walter Roberson
Walter Roberson 2012년 4월 29일
Sorry Jan I must have merged the question out from underneath you.

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2012년 4월 22일
popupstrings = cellstr(get(Handle, 'String'));
popupstrings{5} = 'Ago';
set(Handle, 'String', popupstrings);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by