Re: [fpc-pascal] Compiler error passing a Property as a parameter

2014-06-10 Thread Sven Barth
Am 10.06.2014 09:24 schrieb "Michael Schnell" : > > On 06/08/2014 09:50 PM, Graeme Geldenhuys wrote: >> >> You can't pass them directly as a var parameter, > > > I feel that generally passing a property as a var parameter is not possible, > > It could be possible for built-in functions (such as i

Re: [fpc-pascal] Compiler error passing a Property as a parameter

2014-06-10 Thread Michael Schnell
On 06/08/2014 09:50 PM, Graeme Geldenhuys wrote: You can't pass them directly as a var parameter, I feel that generally passing a property as a var parameter is not possible, It could be possible for built-in functions (such as inc() ) or for properties that don't have a set or get functi

Re: [fpc-pascal] Compiler error passing a Property as a parameter

2014-06-09 Thread Vincent Snijders
2014-06-08 21:50 GMT+02:00 Graeme Geldenhuys : > Hi, > > I think it was FPC 2.6.0 that changed the language rules about > Properties. You can't pass them directly as a var parameter, can't > assign to a property of a property etc. > > Anyway, somebody recently asked my why this was implemented, a

Re: [fpc-pascal] Compiler error passing a Property as a parameter

2014-06-08 Thread Tomas Hajny
On Sun, June 8, 2014 21:50, Graeme Geldenhuys wrote: Hi Graeme, > I think it was FPC 2.6.0 that changed the language rules about > Properties. You can't pass them directly as a var parameter, can't > assign to a property of a property etc. > > Anyway, somebody recently asked my why this was impl

Re: [fpc-pascal] Compiler error

2009-01-25 Thread Vincent Snijders
Vincent Snijders schreef: Michael Van Canneyt schreef: Hm. Hopefully fixed in rev. 12594. Please test. I don't think so: make.exe[3]: Leaving directory `c:/Lazarus/source/fpc/2.3/packages/fpmkunit' make.exe[2]: *** No rule to make target `iconvenc_all', needed by `fcl-xml_all'. Stop. mak

Re: [fpc-pascal] Compiler error

2009-01-25 Thread Ivo Steinmann
Michael Van Canneyt schrieb: > On Sun, 25 Jan 2009, Vincent Snijders wrote: > > >> Michael Van Canneyt schreef: >> >>> On Sun, 25 Jan 2009, Vincent Snijders wrote: >>> >>> Jonas Maebe schreef: > On 25 Jan 2009, at 11:43, Chris Kirkpatrick wrote: > >

Re: [fpc-pascal] Compiler error

2009-01-25 Thread Vincent Snijders
Michael Van Canneyt schreef: On Sun, 25 Jan 2009, Vincent Snijders wrote: Michael Van Canneyt schreef: Is this a known problem, should I report it as a bug, or am I doing something wrong? How can this error happen ? For fcl-xml, there is no dependency on iconvenc_all for windows targets ? [

Re: [fpc-pascal] Compiler error

2009-01-25 Thread Chris Kirkpatrick
Jonas Maebe wrote: On 25 Jan 2009, at 11:43, Chris Kirkpatrick wrote: I have recently been getting the following error when tring to compile fpc using the standard sequence: svn update fpc make clean make all I tried deleting my complete fpc repository and checking out again; same thing ha

Re: [fpc-pascal] Compiler error

2009-01-25 Thread Michael Van Canneyt
On Sun, 25 Jan 2009, Vincent Snijders wrote: > Michael Van Canneyt schreef: > > > > On Sun, 25 Jan 2009, Vincent Snijders wrote: > > > > > Jonas Maebe schreef: > > > > On 25 Jan 2009, at 11:43, Chris Kirkpatrick wrote: > > > > > > > > > I have recently been getting the following error when tri

Re: [fpc-pascal] Compiler error

2009-01-25 Thread Vincent Snijders
Michael Van Canneyt schreef: On Sun, 25 Jan 2009, Vincent Snijders wrote: Jonas Maebe schreef: On 25 Jan 2009, at 11:43, Chris Kirkpatrick wrote: I have recently been getting the following error when tring to compile fpc using the standard sequence: svn update fpc make clean make all I trie

Re: [fpc-pascal] Compiler error

2009-01-25 Thread Michael Van Canneyt
On Sun, 25 Jan 2009, Vincent Snijders wrote: > Jonas Maebe schreef: > > > > On 25 Jan 2009, at 11:43, Chris Kirkpatrick wrote: > > > > > I have recently been getting the following error when tring to compile fpc > > > using the standard sequence: > > > svn update fpc > > > make clean > > > mak

Re: [fpc-pascal] Compiler error

2009-01-25 Thread Vincent Snijders
Jonas Maebe schreef: On 25 Jan 2009, at 11:43, Chris Kirkpatrick wrote: I have recently been getting the following error when tring to compile fpc using the standard sequence: svn update fpc make clean make all I tried deleting my complete fpc repository and checking out again; same thing ha

Re: [fpc-pascal] Compiler error

2009-01-25 Thread Jonas Maebe
On 25 Jan 2009, at 11:43, Chris Kirkpatrick wrote: I have recently been getting the following error when tring to compile fpc using the standard sequence: svn update fpc make clean make all I tried deleting my complete fpc repository and checking out again; same thing happened. Currently u

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

Re: [fpc-pascal]Compiler error on ver 1.9.2, Windows only

2004-02-25 Thread Peter Vreman
> Hi Peter, > This is what the commandline compiler says in a different DOS window while > I > have fp running in the other, right after fp throws the error: > - > Hint: End of reading config file c:\pp\bin\win32\fpc.cfg > Free Pascal Compiler version

Re: [fpc-pascal]Compiler error on ver 1.9.2, Windows only

2004-02-24 Thread Ken Linder
her window, the commandline compiler works fine. Ken - Original Message - From: "Peter Vreman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, February 24, 2004 12:31 AM Subject: Re: [fpc-pascal]Compiler error on ver 1.9.2, Windows only > >

Re: [fpc-pascal]Compiler error on ver 1.9.2, Windows only

2004-02-23 Thread Peter Vreman
> Hi all & I am quite happy to be here. > > I have a rather small piece of code that ocassionally breaks the 1.9.2 > (beta) compiler in Windows XP. It compiles fine under Debian Linux. > Here's > the error I get when compiling in the 'fp' IDE: > > Error: Compiler Exited > Error: Abstract Method Ca