mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-19 00:29:19 +02:00
* error message boxes instead of writeln
This commit is contained in:
parent
d557bebbea
commit
ab364f10f2
@ -1623,7 +1623,8 @@ end;
|
|||||||
inc(cfg.packs);
|
inc(cfg.packs);
|
||||||
if cfg.packs>maxpacks then
|
if cfg.packs>maxpacks then
|
||||||
begin
|
begin
|
||||||
writeln('Too many packs');
|
MessageBox ('Too many packs!', nil,
|
||||||
|
mfError + mfOkButton);
|
||||||
if CreateLog then
|
if CreateLog then
|
||||||
begin
|
begin
|
||||||
WriteLn (Log, 'Too many packs');
|
WriteLn (Log, 'Too many packs');
|
||||||
@ -1638,7 +1639,8 @@ end;
|
|||||||
begin
|
begin
|
||||||
if cfg.packs=0 then
|
if cfg.packs=0 then
|
||||||
begin
|
begin
|
||||||
writeln('No pack set');
|
MessageBox ('No pack set found!', nil,
|
||||||
|
mfError + mfOkButton);
|
||||||
if CreateLog then
|
if CreateLog then
|
||||||
begin
|
begin
|
||||||
WriteLn (Log, 'No pack set');
|
WriteLn (Log, 'No pack set');
|
||||||
@ -1653,7 +1655,8 @@ end;
|
|||||||
begin
|
begin
|
||||||
if cfg.packs=0 then
|
if cfg.packs=0 then
|
||||||
begin
|
begin
|
||||||
writeln('No pack set');
|
MessageBox ('No pack set found!', nil,
|
||||||
|
mfError + mfOkButton);
|
||||||
if CreateLog then
|
if CreateLog then
|
||||||
begin
|
begin
|
||||||
WriteLn (Log, 'No pack set');
|
WriteLn (Log, 'No pack set');
|
||||||
@ -1668,7 +1671,8 @@ end;
|
|||||||
begin
|
begin
|
||||||
if cfg.packs=0 then
|
if cfg.packs=0 then
|
||||||
begin
|
begin
|
||||||
writeln('No pack set');
|
MessageBox ('No pack set found!', nil,
|
||||||
|
mfError + mfOkButton);
|
||||||
if CreateLog then
|
if CreateLog then
|
||||||
begin
|
begin
|
||||||
WriteLn (Log, 'No pack set');
|
WriteLn (Log, 'No pack set');
|
||||||
@ -1683,7 +1687,8 @@ end;
|
|||||||
begin
|
begin
|
||||||
if cfg.packs=0 then
|
if cfg.packs=0 then
|
||||||
begin
|
begin
|
||||||
writeln('No pack set');
|
MessageBox ('No pack set found!', nil,
|
||||||
|
mfError + mfOkButton);
|
||||||
if CreateLog then
|
if CreateLog then
|
||||||
begin
|
begin
|
||||||
WriteLn (Log, 'No pack set');
|
WriteLn (Log, 'No pack set');
|
||||||
@ -1698,7 +1703,8 @@ end;
|
|||||||
begin
|
begin
|
||||||
if cfg.packs=0 then
|
if cfg.packs=0 then
|
||||||
begin
|
begin
|
||||||
writeln('No pack set');
|
MessageBox ('No pack set found!', nil,
|
||||||
|
mfError + mfOkButton);
|
||||||
if CreateLog then
|
if CreateLog then
|
||||||
begin
|
begin
|
||||||
WriteLn (Log, 'No pack set');
|
WriteLn (Log, 'No pack set');
|
||||||
@ -1713,7 +1719,8 @@ end;
|
|||||||
begin
|
begin
|
||||||
if cfg.packs=0 then
|
if cfg.packs=0 then
|
||||||
begin
|
begin
|
||||||
writeln('No pack set');
|
MessageBox ('No pack set found!', nil,
|
||||||
|
mfError + mfOkButton);
|
||||||
if CreateLog then
|
if CreateLog then
|
||||||
begin
|
begin
|
||||||
WriteLn (Log, 'No pack set');
|
WriteLn (Log, 'No pack set');
|
||||||
@ -1728,7 +1735,8 @@ end;
|
|||||||
begin
|
begin
|
||||||
if cfg.packs=0 then
|
if cfg.packs=0 then
|
||||||
begin
|
begin
|
||||||
writeln('No pack set');
|
MessageBox ('No pack set found!', nil,
|
||||||
|
mfError + mfOkButton);
|
||||||
if CreateLog then
|
if CreateLog then
|
||||||
WriteLn (Log, 'No pack set');
|
WriteLn (Log, 'No pack set');
|
||||||
halt(1);
|
halt(1);
|
||||||
@ -1740,7 +1748,8 @@ end;
|
|||||||
begin
|
begin
|
||||||
if cfg.packs=0 then
|
if cfg.packs=0 then
|
||||||
begin
|
begin
|
||||||
writeln('No pack set');
|
MessageBox ('No pack set found!', nil,
|
||||||
|
mfError + mfOkButton);
|
||||||
if CreateLog then
|
if CreateLog then
|
||||||
begin
|
begin
|
||||||
WriteLn (Log, 'No pack set');
|
WriteLn (Log, 'No pack set');
|
||||||
@ -1755,7 +1764,8 @@ end;
|
|||||||
begin
|
begin
|
||||||
if cfg.packs=0 then
|
if cfg.packs=0 then
|
||||||
begin
|
begin
|
||||||
writeln('No pack set');
|
MessageBox ('No pack set found!', nil,
|
||||||
|
mfError + mfOkButton);
|
||||||
if CreateLog then
|
if CreateLog then
|
||||||
begin
|
begin
|
||||||
WriteLn (Log, 'No pack set');
|
WriteLn (Log, 'No pack set');
|
||||||
@ -2030,7 +2040,10 @@ begin
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.26 2005-01-05 17:43:44 armin
|
Revision 1.27 2005-01-05 21:27:55 hajny
|
||||||
|
* error message boxes instead of writeln
|
||||||
|
|
||||||
|
Revision 1.26 2005/01/05 17:43:44 armin
|
||||||
* maxpacks increased tp 30, close logfile before halt
|
* maxpacks increased tp 30, close logfile before halt
|
||||||
|
|
||||||
Revision 1.25 2004/12/31 18:36:44 florian
|
Revision 1.25 2004/12/31 18:36:44 florian
|
||||||
|
Loading…
Reference in New Issue
Block a user