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, 10.2 Tokyo > Tagが同じTMemoからテキストを取得する実装

Last updated at Posted at 2016-09-02
動作環境
C++ Builder XE4
RAD Studio 10.2 Tokyo Update 2 (追記: 2017/12/28)

仕様

  • Button押下時、ButtonのTagプロパティ値と同じ値をTagプロパティに持つTMemoのTextを取得する

code v0.1

Unit1.h
//---------------------------------------------------------------------------

# ifndef Unit1H
# define Unit1H
//---------------------------------------------------------------------------
# include <System.Classes.hpp>
# include <Vcl.Controls.hpp>
# include <Vcl.StdCtrls.hpp>
# include <Vcl.Forms.hpp>
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published:	// IDE で管理されるコンポーネント
	TButton *Button1;
	TMemo *Memo1;
	TMemo *Memo2;
	TMemo *Memo3;
	void __fastcall Button1Click(TObject *Sender);
private:	// ユーザー宣言
	String __fastcall getMemoText(TForm *frmPtr, String tag);
public:		// ユーザー宣言
	__fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
# endif
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)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm1::Button1Click(TObject *Sender)
{
	if (Sender == NULL) {
		return;
	}

	TComponent *cmpPtr = (TComponent *)Sender;
	String ret = getMemoText(this, cmpPtr->Tag);
	ShowMessage(ret);
}

String __fastcall TForm1::getMemoText(TForm *frmPtr, String tag)
{
	String ret = L"";
	for(int idx=0; idx < frmPtr->ComponentCount; idx++) {
		if (dynamic_cast<TMemo *>(frmPtr->Components[idx]) == NULL) {
			continue;
		}

		TMemo *mmPtr = (TMemo *)frmPtr->Components[idx];
		if (mmPtr->Tag != tag) {
			continue;
		}

		ret = mmPtr->Text;
	}

	return ret;
}
//---------------------------------------------------------------------------

TForm *frmPtrを渡しているのは、別のユニットに持っていく前準備として。同じフォームで使う場合はthisで十分。

設定

  • Memo1
    • Tag: 3141
    • Text: Memo3141
  • Memo2
    • Tag: 2718
    • Text: Memo2718
  • Memo3
    • Tag: 6022
    • Text: Memo6022
  • Button
    • Tag: 2718

結果

qiita.png

qiita.png

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?