Delphi

[Delphi] 모달, 모달리스 폼 띄우기

그저심 2022. 9. 5. 21:00

https://monoworld-1.tistory.com/603

 

델파이 폼 모달 TForm modal, modaless show

델파이 폼 모달 TForm modal, modaless show 1. 모달 폼 띄우기 (팝업창, 모달, modal) ex) 설정폼. TfrmSetup frmSetup := TfrmSetup.Create(Self);  // 폼 생성 ..... // 폼 생성 후 보이기 전에 하는..

monoworld-1.tistory.com

procedure TmyForm.ButtonClick(Sender: TObject);
var
  frmEx1: TfrmEx1;
begin
  frmEx1 := TfrmEx1.Create(Self);
  try
    frmEx1.ShowModal;
  finally
    frmEx1.Free;
    frmEx1 := nil;
  end;
end;
반응형

'Delphi' 카테고리의 다른 글

[Delphi] PC Sound Control  (0) 2022.10.08
[Delphi] TIniFile 클래스  (0) 2022.09.14
[Delphi] TStopwatch 사용  (0) 2022.09.02
[Delphi] TNetHttpClient multipart/form-data : Send File  (0) 2022.06.20
[Delphi] ZLib (Compress, Decompress)  (0) 2022.06.13