Componentes.Terceros.jcl/official/1.96/examples/windows/clr/ClrDemo.dpr

22 lines
730 B
ObjectPascal

program ClrDemo;
uses
Forms,
ClrDemoMain in 'ClrDemoMain.pas' {frmMain},
ClrDemoAbstractFrame in 'ClrDemoAbstractFrame.pas' {frmAbstract: TFrame},
ClrDemoMetaDataFrame in 'ClrDemoMetaDataFrame.pas' {frmMetadata: TFrame},
ClrDemoStringsForm in 'ClrDemoStringsForm.pas' {frmStrings},
ClrDemoGuidForm in 'ClrDemoGuidForm.pas' {frmGuid},
ClrDemoBlobForm in 'ClrDemoBlobForm.pas' {frmBlobs},
ClrDemoTableForm in 'ClrDemoTableForm.pas' {frmTable},
ClrDemoUserStringsForm in 'ClrDemoUserStringsForm.pas' {frmUserStrings},
ClrDemoCLRFrame in 'ClrDemoCLRFrame.pas' {frmCLR: TFrame};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TfrmMain, frmMain);
Application.Run;
end.