Всем привет. Помогите перевести приложение в консольное:
program ping;
{$APPTYPE CONSOLE}
uses
Messages, SysUtils, Classes,
IdCookieManager, IdAntiFreezeBase, IdAntiFreeze,
IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient, IdHTTP,
StdCtrls, IdMessage, IdMessageClient, IdSMTP;
type
idntfrz1= TIdAntiFreeze;
Mail1= TIdSMTP;
Mes1= TIdMessage;
{$R *.res}
begin
Mail1.connect(3000); // ñîåäèíÿåìñÿ
if Mail1.Connected = true then
begin
Mes1.Body.Text := '';
Mail1.Send(Mes1); // îòïðàâëÿåì
Mail1.Disconnect; // îòúåäèíÿåìñÿ
end;
end.