Comboboxの値の取得
NewsGroupにて教えてもらいました。
Comboboxからの値の取得は以下の通り。
Key値の取得:
$this->Edit1->Text = $this->ComboBox1->ItemIndex;
Value値の取得:
$combokey = $this->ComboBox1->ItemIndex;
$res = $this->ComboBox1->Items[$combokey];
$this->Edit1->Text = $res;
| 固定リンク

コメント