C++ Builder 10.2 Tokyo Update 3 > MinimizeName() > 미해결 심볼 > 조치 | XE4에서 실행 중
Windows 10 Pro (64bit) バージョン 1709
RAD Studio 10.2 Tokyo Update 3
오류
MinimizeName()을 사용하여 표시 문자열을 줄이려고하면 오류가 발생했습니다.
Unit1.cpp
//---------------------------------------------------------------------------
#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>
로 변경합니다.Unit1.cpp
//---------------------------------------------------------------------------
#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);
}
//---------------------------------------------------------------------------
링크
XE4에서 작동했습니다.
XE4에서는
#include <FileCtrl.hpp>
하지만 오류가 발생하지 않습니다.XE4의 경우, 본래는
#include <Vcl.FileCtrl.hpp>
에 해야 하지만, #include <FileCtrl.hpp>
에서도 동작하게 된 것 같다.docwiki.embarcadero.com에서 include 파일을 확인하는 것이 좋습니다.
Reference
이 문제에 관하여(C++ Builder 10.2 Tokyo Update 3 > MinimizeName() > 미해결 심볼 > 조치 | XE4에서 실행 중), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/7of9/items/d9fdefe21976c1048e1f텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)