動作環境
C++ Builder XE4
概要
- TComboBoxを使用
- Items[]にリスト登録
- ItemIndexとしてリスト内のインデックスを保持
- Items[]から選択している項目のTextをとろうとした
- 失敗
実装
Unit1.cpp
//---------------------------------------------------------------------------
# include <vcl.h>
# pragma hdrstop
# include "Unit1.h"
//---------------------------------------------------------------------------
# pragma package(smart_init)
# pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------
__fastcall TForm1::TForm1(TComponent* Owner)
: TForm(Owner)
{
ComboBox1->ItemIndex = 9;
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button1Click(TObject *Sender)
{
int idx = ComboBox1->ItemIndex;
String wrk = ComboBox1->Items[idx].Text;
ShowMessage(wrk);
}
//---------------------------------------------------------------------------
ComboBox1のItems[]の確認
ブレークポイントで止めて、Items[]の中身を見た。
良く分からない内容が表示される。
代替手法
選択している文字列を取得するなら以下とすればいい。
String wrk = ComboBox1->Text;
Items[]の特定のインデックスの文字列を取る方法は未調査。