DelphiZXingQRCode/TestApp/DelphiZXingQRCodeTestApp.dpr
2013-12-18 14:27:32 +11:00

14 lines
290 B
ObjectPascal

program DelphiZXingQRCodeTestApp;
uses
Vcl.Forms,
DelphiZXingQRCodeTestAppMainForm in 'DelphiZXingQRCodeTestAppMainForm.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.