Componentes.Terceros.UserCo.../internal/2.20/2/Demos/2 UCControls - ADO/UCControlsDemo.dpr

15 lines
239 B
ObjectPascal
Raw Normal View History

program UCControlsDemo;
uses
Forms,
ucontrols in 'ucontrols.pas' {Form1},
form2_U in 'form2_U.pas' {Form2};
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.