git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.DevExpressVCL@21 05c56307-c608-d34a-929d-697000501d7a
15 lines
300 B
ObjectPascal
15 lines
300 B
ObjectPascal
program CustomFunction;
|
|
|
|
uses
|
|
Forms,
|
|
CustomFunctionFrm in 'CustomFunctionFrm.pas' {CustomFunctionForm},
|
|
AreaCustomFunc in 'AreaCustomFunc.pas';
|
|
|
|
{$R *.RES}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TCustomFunctionForm, CustomFunctionForm);
|
|
Application.Run;
|
|
end.
|