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]Makefile.fpc reloaded

2004-04-05 Thread Marc Santhoff
Am Mo, den 05.04.2004 schrieb Peter Vreman um 07:47: > > Hi! > > > > After stopping because of too few time I'm starting writing Makefile.fpc > > again. > > > > The structure is now: > > > > main/src > > /test > > /doc > > > > The goal is to have fpcmake create a directory "obj" for writing

RE: [fpc-pascal]Compiler error messages GO32V2

2004-04-05 Thread Lubomir . Cabla
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 i exit IDE to DOS a

[fpc-pascal]QWORD error ?

2004-04-05 Thread Lubomir . Cabla
Hi All, I'm sorry, but i'm having trouble using 64-bits QWORD arithmetic. This results i got with IDE 0.9.2 5.4.2004, compiler 1.9.3. var L : Longint; qw : qword; begin qw:=100; qw:=qw-1; { qw=99 O.K. } L:=1; qw:=qw-L; { qw=98 O.K. } L:=-1; qw:=

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 : string; > begin

[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