RE: [fpc-pascal]Compiler error messages GO32V2

2004-04-05 Thread Peter Vreman
> Hi, > > this problem appears under pure DOS 6.22 and in DOS under Windows 2003 > too. > > It is enough to change New(pp) to New(p) and with compiling > i got 'some' error "p doesn't exist". Then i change back New(p) to > New(pp) and compiler shows this error > "Type identifier expected" > > When

RE: [fpc-pascal]Compiler error messages GO32V2

2004-04-05 Thread Lubomir . Cabla
:20 AM To: [EMAIL PROTECTED] Subject: Re: [fpc-pascal]Compiler error messages GO32V2 > Second, > > if i got any compiler error message (also in IDE) in > one program > and then i try to compile the another one with command > New() (as this) > > type px = ^pt; > pt =

Re: [fpc-pascal]Compiler error messages GO32V2

2004-04-05 Thread Peter Vreman
>> uses crt; >> var NoOfColumns : word; >> StatusLine,s : string; >> begin >> NoOfColumns:=24; >> StatusLine:='ESC'; >> s:='Press any key...'; >> gotoXY((NoOfColumns div 2)-(Length(StatusLine+': '+s) >> div 2), 2); >> end. >> >> With version 1.9.3. (now i tried version from 5.4.2004 >> also) >> i a

Re: [fpc-pascal]Compiler error messages GO32V2

2004-04-05 Thread Tomas Hajny
From:[EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [fpc-pascal]Compiler error messages GO32V2 Date sent: Mon, 5 Apr 2004 09:50:25 +0200 Hi, > i have a problem to compile the following some rows... > > uses crt; > var NoOfColumns : word; > StatusLine,s :

[fpc-pascal]Compiler error messages GO32V2

2004-04-05 Thread Lubomir . Cabla
Hi, i have a problem to compile the following some rows... uses crt; var NoOfColumns : word; StatusLine,s : string; begin NoOfColumns:=24; StatusLine:='ESC'; s:='Press any key...'; gotoXY((NoOfColumns div 2)-(Length(StatusLine+': '+s) div 2), 2); end. With version 1.9.3. (now i tried