mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-14 10:02:10 +08:00
14 lines
196 B
ObjectPascal
14 lines
196 B
ObjectPascal
program QueryThreadExample;
|
|
|
|
uses
|
|
Forms,
|
|
Main in 'Main.pas' {Form1};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|