|
void __fastcall TFormEditor::FindDialog1Find(TObject *Sender)
{
int FoundAt, StartPos, ToEnd;
if (RichEdit1->SelLength)
StartPos = RichEdit1->SelStart + RichEdit1->SelLength;
else
StartPos = 0;
ToEnd = RichEdit1->Text.Length() - StartPos;
FoundAt = RichEdit1->FindTextA(FindDialog1->FindTextA, StartPos, ToEnd, TSearchTypes()<<stMatchCase);
.
.
아래와 같은 에러가 발생합니다.
[ILINK32 Error] Error: Unresolved external '__fastcall Vcl::Comctrls::TCustomRichEdit::FindTextA(const System::UnicodeString, int, int, System::Set<Vcl::Comctrls::TSearchType, 0, 1>)' referenced from D:\EQSOURCE\DEBUG_BUILD\UNITEDITOR.OBJ
[ILINK32 Error] Error: Unable to perform link
마지막 문장이 문제 인 것 같은데 이리저리 해보아도 해결이 되지 않습니다.
도움이 필요 할 것 같습니다.
감사합니다.
|