Marco Web Center

[an error occurred while processing this directive]

Home: Code Repository: Delphi 2009 Handbook

Project: SimpleApp.dproj

Project Structure

SimpleApp.dpr
program SimpleApp;

uses
  Forms,
  SimpleAppMainForm in 'SimpleAppMainForm.pas' {Form30};

{$R *.res}

begin
  Application.Initialize;
  Application.MainFormOnTaskbar := True;
  Application.CreateForm(TForm30, Form30);
  Application.Run;
end.
SimpleAppMainForm.pas
unit SimpleAppMainForm;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs;

type
  TForm30 = class(TForm)
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form30: TForm30;

implementation

{$R *.dfm}

end.
SimpleAppMainForm.pas.dfm
object Form30: TForm30
  Left = 0
  Top = 0
  Caption = 'SimpleApp'
  ClientHeight = 279
  ClientWidth = 457
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'Tahoma'
  Font.Style = []
  OldCreateOrder = False
  PixelsPerInch = 96
  TextHeight = 13
end
HTML file generated by PasToWeb, a tool by Marco Cantù
Copyright 2008 Marco Cantù