Error in module : Declaration of class TForm1 is missing or incorrect.
라는 에러가 생기는데 왜 그러죠?
type
Tparents = class(TForm)
private
{ Private declarations }
public
{ Public declarations }
end;
Tchild = class(Tparents)
public
end;
var
parents : Tparents;
child : Tchild;
델파이에서 프로퍼티에 나타나는 값들은 dfm 파일에 있는것들 입니다.
해당값도 고쳐주셔야 합니다.
아마.. 폼의 클래스를 에디터에서 바로 고치신것 같은데 속성창에서 고쳐주시면 좀더 간단하게 될것 같네요..
아니면 dfm 파일을 읽으셔서 해당내용도 같이 고쳐주시면 될껍니다.
그럼..