Показать сообщение отдельно
  #2  
Старый 31.05.2010, 13:05
Аватар для NIch
NIch NIch вне форума
Продвинутый
 
Регистрация: 02.06.2008
Адрес: Бендеры ПМР
Сообщения: 754
Репутация: 2446
По умолчанию

Добавь объявление процедуры
Код:
unit Unit1;

interface

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

type
  TForm1 = class(TForm)
    Timer1: TTimer;
    procedure Timer1Timer(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

  procedure Baby (x,y:integer; color:TColor);

  var
  Form1: TForm1;
  x,y: integer;

implementation

{$R *.dfm}
__________________
В начале был Бит, потом Байт и только потом появилось Слово...
Ответить с цитированием