Componentes.Terceros.jcl/official/1.96/examples/windows/asuser/CreateProcAsUserExample.dpr

14 lines
241 B
ObjectPascal
Raw Normal View History

program CreateProcAsUserExample;
uses
Forms,
CreateProcAsUserDemoMain in 'CreateProcAsUserDemoMain.pas' {Form1};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.