|
전에 나와있는 모든 splash 관련 질문과 답변을 보았지만 해결이 않되서 이렇게 글을 올립니다.
TForm_About라는 폼을 미리 만들었고 폼의 메뉴중 Project > options > Forms tag에서 Auto-create forms에서
available forms쪽으로 이동시켰습니다.
그리고
Application->Initialize();
TForm_About *form_About = new TForm_About (Application);
form_About->Show ();
form_About->Update (); form_About->Close ();
delete form_About; Application->Run();
의 코드를 프로젝트.cpp 파일에 추가를 시켰습니다.
그런데 뭐가 잘못된건지 에러메시지들이 속출하네요 ㅠ.ㅠ
Build
[C++ Error] Project1.cpp(15): E2450 Undefined structure 'TForm_About'
[C++ Error] Project1.cpp(15): E2034 Cannot convert 'TApplication *' to 'TForm_About'
[C++ Error] Project1.cpp(16): E2315 'Show' is not a member of 'TForm_About', because the type is not yet defined
[C++ Error] Project1.cpp(17): E2315 'Update' is not a member of 'TForm_About', because the type is not yet defined
[C++ Error] Project1.cpp(19): E2315 'Close' is not a member of 'TForm_About', because the type is not yet defined
[C++ Error] Project1.cpp(36): E2451 Undefined symbol 'exception'
에러는 위와 같은 내용입니다.
어떤식으로 해결을 해야할지 힌트 조금만 주세요 ㅠ.ㅠ 부탁드려요.
|