c++ builder XE4, 10.2 Tokyo > ある名前のFormがあるかどうかチェック
3224 ワード
動作環境
C++ Builder XE4 on Windows 7 pro
Rad Studio 10.2 Tokyo Update 2 (追記: 2017/12/27)
ある名前(例: Form2)のフォームがあるかどうかを知りたい。
http://stackoverflow.com/questions/25610673/delphi-find-form-by-name
でのdelphi実装を参考に以下の実装をした。
void __fastcall TForm1::Button1Click(TObject *Sender)
{
// method 1
TComponent *formPtr = Application->FindComponent(L"Form2");
if (formPtr == NULL) {
OutputDebugString(L"Form2 not found");
} else {
OutputDebugString(L"Form2 found");
}
// method 2
for(int idx=0; idx < Screen->FormCount; idx++) {
if (Screen->Forms[idx]->Name == L"Form2") {
OutputDebugString(L"Form2 found");
return;
}
}
OutputDebugString(L"Form2 not found");
return;
}
Author And Source
この問題について(c++ builder XE4, 10.2 Tokyo > ある名前のFormがあるかどうかチェック), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/d34e308eed3d5a48b510著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .