|
패패루님 말대로 Integer를 int로 고쳐봐도 같은 에러가 계속 나옵니다.
기왕에 도와주신거 한번 더 살펴주시면 대단히 감사하겠습니다. 감사합니다.
패패루 님이 쓰신 글 :
: Integer i,j,index; 가 아니고
: int i, j, index; 로 쓰셔야죠..
: Integer는 파스칼에서 사용합니다..
: -_-
:
:
: 완존초보 님이 쓰신 글 :
: : 맨 아래의 에러메시지가 왜뜨는지 모르겠습니다. 대단히 감사합니다.
: :
: : <unit1.h>화일내용
: : class TFormMain : public TForm
: : {
: : __published: // IDE-managed Components
: : TPanel *Panel1;
: : TSpeedButton *SpeedBtnDispMslRaw;
: : .
: : void __fastcall BtnDiscTestClick(TObject *Sender);
: : .
: : private: // User declarations
: : public: // User declarations
: : void DispScaleData();
: : .
: : __fastcall TFormMain(TComponent* Owner);
: : };
: :
: : <unit1.cpp>화일내용
: : void TFormMain::DispScaleData()
: : {
: : Integer i,j,index;
: : .
: : }
: :
: : <에러메시지 내용>
: : [C++ Error] Unit1.cpp(393): E2089 Identifier 'DispScaleData' cannot have a type qualifier
: :
|