Logo New book: Delphi 2007 Handbook
My blog in online
Delphi tech support service: support.marcocantu.com
Google
  Web www.marcocantu.com

Menu for Development

Site Menu
Delphi 2007 Handbook
Mastering Borland Delphi 2005
Essential Pascal
Essential Delphi
Buy Books Online
Code Repository
Newsgroups
White Papers
Tools
Conferences
Training
Delphi Links
Contact Marco

My Other Sites
Italian Site (www.marcocantu.it)
Developers Newsgroups Browser (dev.newswhat.com)
My town (www.piazzacavalli.net)
the delphi search
Wintech Italia (my company)

Breaking News
Buy Mastering Borland Delphi 2005 from Amazon
Free ebook: Mastering Delphi Update for Delphi 2006

Advertising
Home My Blog Books My Bookstore Development Links Marco



Home: Code Repository: Mastering Delphi 5

Project BREAKP

Project Structure


BREAKP.DPR

program Breakp;

uses
  Forms,
  BreakpF in 'BreakpF.pas' {Form1};

{$R *.RES}

begin
  Application.CreateForm(TForm1, Form1);
  Application.Run;
end.

BREAKPF.PAS

unit BreakpF;

interface

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

type
  TForm1 = class(TForm)
    Button1: TButton;
    procedure FormPaint(Sender: TObject);
    procedure Button1Click(Sender: TObject);
    procedure FormResize(Sender: TObject);
  private
    X1, Y1, X2, Y2: Integer;
  end;

var
  Form1: TForm1;

implementation

{$R *.DFM}

procedure TForm1.FormPaint(Sender: TObject);
begin
  {set a breakpoint on the next line}
  Canvas.MoveTo (X1, Y1);
  Canvas.LineTo (X2, Y1);
  Canvas.LineTo (X2, Y2);
  Canvas.LineTo (X1, Y2);
  Canvas.LineTo (X1, Y1);
end;

procedure TForm1.Button1Click(Sender: TObject);
var
  Limit: Integer;
begin
  {set a breakpoint on the next line}
  X1 := X1 + 5;
  Y1 := Y1 + 5;
  X2 := X2 - 5;
  Y2 := Y2 - 5;
  {dummy code: try setting a breakpoint on next line}
  Limit := 3;
  Limit := X1;
  {is the line over the button?}
  if X1 >= Button1.Left then
  begin
    Button1.Enabled := False;
    X1 := Button1.Left;
  end;
  if Y1 >= Button1.Top then
  begin
    Button1.Enabled := False;
    Y1 := Button1.Top;
  end;
  Invalidate;
end;

procedure TForm1.FormResize(Sender: TObject);
begin
  {set a breakpoint on the next line}
  Button1.Enabled := True;
  X1 := 10;
  Y1 := 10;
  X2 := ClientWidth - 10;
  Y2 := ClientHeight - 10;
  Invalidate;
end;

end.

BREAKPF.DFM

object Form1: TForm1
  Left = 458
  Top = 171
  Width = 297
  Height = 211
  Caption = 'Breakpoints Test'
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clBlack
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = True
  OnPaint = FormPaint
  OnResize = FormResize
  PixelsPerInch = 96
  TextHeight = 13
  object Button1: TButton
    Left = 100
    Top = 75
    Width = 89
    Height = 33
    Caption = 'Push me'
    TabOrder = 0
    OnClick = Button1Click
  end
end