フィルターのクリア

How to repopulate popupmenu by deleting old data.

2 ビュー (過去 30 日間)
Enrique
Enrique 2013 年 8 月 5 日
Hi,
I am writing a program using GUI where I have two pop up menus that include dates of recorded data. When the user loads new data both pop up menus get filled by a cell-array vector that include dates from lower to higher order. The user then selects a date in popupmenu1 and another one in popupmenu2. The program then selects data from that range and plots it.
The problem is that when the user loads new data the popup menus repopulates but they keep the old dates; it writes the new dates above the old dates. My question is, how can I reset the pop up menu to default? (no string written on it, blank) so that I can then populate it with the new dates?

回答 (3 件)

Evan
Evan 2013 年 8 月 5 日
set(popup_handle,'String','')
That should do the trick.

Enrique
Enrique 2013 年 8 月 5 日
編集済み: Enrique 2013 年 8 月 5 日
Hi Evan,
I tried
set(handles.popupmenu1,'String','')
doesn't work
  1 件のコメント
Evan
Evan 2013 年 8 月 5 日
When you say "doesn't work" do you mean you get an error? Or does the list just not change?
If it's the latter, are you updating the handles structure after setting the string to empty?
guidata(hObject,handles)

サインインしてコメントする。


Enrique
Enrique 2013 年 8 月 5 日
Hey, I think the problem is in my original code and not in the GUI.
I believe I am not deleting the vector that contains the dates, so whenever I load new data they just get added to the old vector.
I will try "clear dates" and see what happens.
Thank you.
  1 件のコメント
Evan
Evan 2013 年 8 月 5 日
You're welcome.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by