Re: [fpc-pascal]writeln in win32 gui application

2004-05-09 Thread Peter Vreman
> On 9 May 2004 at 12:17, Peter Vreman wrote: > >> At 11:55 9-5-2004, you wrote: >> >Hi, >> > >> >The following program gives run time error 103. If I uncomment the >> >rewrite line, it runs ok. Is this a bug or feature? If it is a feature, >> >can somebody explain, the reasoning behind it. >> > >>

Re: [fpc-pascal]writeln in win32 gui application

2004-05-09 Thread Vincent Snijders
On 9 May 2004 at 12:17, Peter Vreman wrote: > At 11:55 9-5-2004, you wrote: > >Hi, > > > >The following program gives run time error 103. If I uncomment the > >rewrite line, it runs ok. Is this a bug or feature? If it is a feature, > >can somebody explain, the reasoning behind it. > > > >program g

[fpc-pascal]How to start IDE?

2004-05-09 Thread aomarlow
Hi everyone,   I'm new to programming, as you'll all soon know when I ask this quetion:   I have downloaded FreePascal onto my computer, and installed it, but I do not know how to set the path (whatever that means) and I do not know how to start the IDE.  I'm using Windows.  Is this for DOS only, o

RE: [fpc-pascal]FPC 1.9.x assembler register conventions

2004-05-09 Thread paradice
Excellent answers. Thank you very much! > -Original Message- > From: Tomas Hajny [mailto:[EMAIL PROTECTED] > Sent: Sunday, 9 May 2004 4:44 a.m. > To: [EMAIL PROTECTED] > Subject: Re: [fpc-pascal]FPC 1.9.x assembler register conventions > > Hi Lawrence > > I'll try to answer your questions

Re: [fpc-pascal]writeln in win32 gui application

2004-05-09 Thread Peter Vreman
At 11:55 9-5-2004, you wrote: Hi, The following program gives run time error 103. If I uncomment the rewrite line, it runs ok. Is this a bug or feature? If it is a feature, can somebody explain, the reasoning behind it. program guiwriteln; {$mode objfpc}{$H+} {$apptype gui} begin //rewrite(outp

Re: [fpc-pascal]writeln in win32 gui application

2004-05-09 Thread Michael Van Canneyt
On Sun, 9 May 2004, vs wrote: > Hi, > > The following program gives run time error 103. If I uncomment the > rewrite line, it runs ok. Is this a bug or feature? If it is a feature, > can somebody explain, the reasoning behind it. > > program guiwriteln; > > {$mode objfpc}{$H+} > {$apptype gui}

[fpc-pascal]writeln in win32 gui application

2004-05-09 Thread vs
Hi, The following program gives run time error 103. If I uncomment the rewrite line, it runs ok. Is this a bug or feature? If it is a feature, can somebody explain, the reasoning behind it. program guiwriteln; {$mode objfpc}{$H+} {$apptype gui} begin //rewrite(output); writeln('Test'); end.