[fpc-pascal] Error runtime 102
Alain Michaud
Alain.Michaud at nrc-cnrc.gc.ca
Tue Mar 7 17:03:02 CET 2006
Hi,
if you have something like:
procedure mygoodprocedure
var
oldd : text
begin
then I would sugest that you put "text" line above:
unit myunit
...
var
oldd : text
...
procedure mygoodprocedure
var
...
begin
The file should be "global" , not in a procedure
goog luck
Alain
On Tue, 2006-03-07 at 23:54 +0800, Janie Gan wrote:
> Hi,
>
> I've been working on a program and each time i run it, it comes up wiht an
> error runtime 102. I know it might have something to do with Assign, Amend
> etc functions but can't figure out exactly where i went wrong. Here's an
> example script.
>
> Begin
> Assign(oldd,'DDNAMEold.txt');
> reset(oldd);
> REPEAT read (oldd,ystart,yddstart,P);
> UNTIL eof(oldd);
> End
>
> I've got this program from another person who's been working on this before
> me. I'm a complete beginner and has been spending a week learning how to use
> Pascal. Would appreciate it if someone can point out where I've gone wrong
> and also how to fix it!
>
> Thank you!
>
> Janie
>
>
> _______________________________________________
> fpc-pascal maillist - fpc-pascal at lists.freepascal.org
> http://lists.freepascal.org/mailman/listinfo/fpc-pascal
More information about the fpc-pascal
mailing list