OpenDialog 를 이용하여 윈도우의 파일 열기 창을 띄울려고 하는데
코딩에는 이상이 없는것 같은데 안되네요.
다음 코딩에서 OpenDialog1.Execute에서 다음으로 넘어가지 않고
CPU 에러가 계속 띕니다.
무슨 77FA018D C3 ret 어쩌구저쩌구 하는데서 넘어 가질 않네요....
도대체 뭔가 잘못된거죠??
제발 가르쳐 주세요.....
procedure TOpenEstForm.OpenEstButtonClick(Sender: TObject);
var
F: TextFile;
S: string;
begin
if OpenDialog1.Execute then { Display Open dialog box }
begin
AssignFile(F, OpenDialog1.FileName); { File selected in dialog box }
Reset(F);
Readln(F, S); { Read the first line out of the file }
Edit1.Text := S; { Put string in a TEdit control }
CloseFile(F);
end;
end;
델파이를 종료했다가 다시 실행해보심이.. 가끔 델파이 에러가 나기도 하거든요...