0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

C++ Builder XE4 > はまり > TComboBox > Items[]のTextを取れなかった > Error: モジュール XXXのアドレスXXXでアドレスXXXに対する読取り違反がおきました。

Last updated at Posted at 2018-12-21
動作環境
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);
}
//---------------------------------------------------------------------------

2018-12-21_11h31_53.png

ComboBox1のItems[]の確認

ブレークポイントで止めて、Items[]の中身を見た。

2018-12-21_11h33_46.png

良く分からない内容が表示される。

代替手法

選択している文字列を取得するなら以下とすればいい。

String wrk = ComboBox1->Text;

Items[]の特定のインデックスの文字列を取る方法は未調査。

関連

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?