BCS frm000 Skeleton


This is the base skeleton for Delphi software that does not employ the dfm.
frm001
Below s the typical calling sequence for this program.
[codesyntax lang=”delphi”]

{*-----------------------------------------------------------------------------
 Program Name: frm000ml
 Date:      25-May-2015
 Purpose:
 History:
 @Author    Mr. Arch Brooks, Software Engineer, Brooks Computing Systems, LLC
 @version    1.0.0.0
 -----------------------------------------------------------------------------}
program frm000ml;
uses
  Vcl.Forms,
  Vcl.Styles,
  Vcl.Themes,
  frm000u in 'frm000u.pas',
  frm001u in 'frm001u.pas';
{$R *.res}
begin
  Application.Initialize;
  Application.MainFormOnTaskbar := True;
  TStyleManager.TrySetStyle('Amethyst Kamri');
  rp0.Caption := 'BCS Default Cpation';
  frm000c.frmShowModal;
  Application.Run;
  Application.Terminate;
end.

[/codesyntax]
A 32 bit executable program may be downloaded by clicking here.
A 64 bit executable program may be downloaded by clicking here.
The component documentation can be found by clicking here.
The source code may be found by clicking here.
Mr. Arch Brooks, Software Engineer, Brooks Computing Systems, LLC authored this article.

Leave a Reply

Your email address will not be published. Required fields are marked *