Componentes.Terceros.DevExp.../official/x.30/ExpressSpreadSheet/Demos/Delphi/CustomFunctionDemo/CustomFunction.dpr

15 lines
300 B
ObjectPascal
Raw Normal View History

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.