/donations/examples/visclx/dfm/JclDFMTest.dpr

https://github.com/the-Arioch/jcl · Pascal · 13 lines · 9 code · 3 blank · 1 comment · 0 complexity · 97474f15686d2383ab4a55f1397e7758 MD5 · raw file

  1. program JclDFMTest;
  2. uses
  3. QForms,
  4. JclDFMTestMain in 'JclDFMTestMain.pas' {fmJclDFMTest};
  5. {$R *.res}
  6. begin
  7. Application.Initialize;
  8. Application.CreateForm(TfmJclDFMTest, fmJclDFMTest);
  9. Application.Run;
  10. end.