[futurebasic] Re: [FB] Re: Requester Font

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : July 2002 : Group Archive : Group : All Groups

From: Robert Purves <robert.purves@...>
Date: Tue, 23 Jul 2002 17:08:51 +1200
On Tuesday, July 23, 2002, at 02:48  AM, Ken Shmidheiser wrote:

> Martin asked:
>
>> Error: Variable type Specified has not been defined yet.
>> in file shell:SHELL_GLOBALS.GLBL at line 129 in 
>> HRHTMLRENDERINGLIBAVAILABLE
>> .dim hrRef as .HRRef
>>
>> I get this error in the shell. How do I make it go away?
>
>
> dim hrRef as long
>

The original
   dim hrRef as .HRRef
is not the same as the suggested fix
   dim hrRef as long
and the latter may not work.

The primary problem is that the type HRRef is undefined.
Put this ahead of the offending dim statement:

#define HRRef as ptr

and leave the dim statement as it was.

Robert P.