Показать сообщение отдельно
  #8  
Старый 02.09.2007, 15:40
Аватар для 4erep_88
4erep_88 4erep_88 вне форума
Новичок
 
Регистрация: 18.07.2007
Сообщения: 51
Репутация: 15
По умолчанию

Вот рабочий вариант:
Код:
program Project1;

uses
  Forms,Windows,
  Unit1 in 'Unit1.pas' {Form1};

{$R *.res}

begin
  Application.Initialize;
  Form1:=TForm1.Create(nil);
  Application.Run;
  while true do begin
   sleep(1000);
   Application.ProcessMessages;
  end;
end.
т.е форму создаем сами