C++ Builder 10.2 Tokyo Update 3 > MinimizeName() > 未解決のシンボル > 対処 | XE4では動作していた
Windows 10 Pro (64bit) バージョン 1709
RAD Studio 10.2 Tokyo Update 3
エラー
MinimizeName()を使って表示文字列の短縮をしようとしたらエラーになった。
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include <FileCtrl.hpp>
#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)
{
String filePath = L"C:\Windows\System32\TemporaryFiles\readme.txt";
Edit1->Text = filePath;
Edit2->Text = MinimizeName(filePath, this->Canvas, Edit1->Width);
}
//---------------------------------------------------------------------------
Unit1.cppはビルドできるが、プロジェクトのメイクでエラーが出る。
[ilink32 エラー] Error: 未解決の外部シンボル '__fastcall Vcl::Filectrl::MinimizeName(System::UnicodeString, Vcl::Graphics::TCanvas , int)' が **\DEBUG\UNIT1.OBJ から参照されています
対処
#include <FileCtrl.hpp>
を
#include <Vcl.FileCtrl.hpp>
に変更する。
//---------------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include <Vcl.FileCtrl.hpp>
#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)
{
String filePath = L"C:\\Windows\\System32\\TemporaryFiles\\readme.txt";
Edit1->Text = filePath;
Edit2->Text = MinimizeName(filePath, this->Canvas, Edit1->Width);
}
//---------------------------------------------------------------------------
link
XE4では動作していた
XE4では#include <FileCtrl.hpp>
でもエラーが出ない。
XE4の場合、本来は#include <Vcl.FileCtrl.hpp>
にすべきであるが、#include <FileCtrl.hpp>
でも動作するようになっていたようだ。
docwiki.embarcadero.comの記載でincludeファイルを確認する方が良いだろう。
Author And Source
この問題について(C++ Builder 10.2 Tokyo Update 3 > MinimizeName() > 未解決のシンボル > 対処 | XE4では動作していた), 我々は、より多くの情報をここで見つけました https://qiita.com/7of9/items/d9fdefe21976c1048e1f著者帰属:元の著者の情報は、元の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 .