[futurebasic] Re: [FB] why doesn't this work?

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : October 2001 : Group Archive : Group : All Groups

From: Robert Covington <artlythere@...>
Date: Wed, 17 Oct 2001 11:12:05 -0400
>dim record toto
> dim titi as rgnHandle
>end record
>
>dim gToto as handle to toto
>
>...
>
>myRect = gToto..titi..rgnBBox
>
>compiler complains that it doesn't like this sort of thing, that constant is
>declared, that record is not the same size...
>
>why?
>
>:-j

Why also would you want to have a handle to a record containing a handle?


Would not :
//
dim record toto
dim titi as rgnHandle
end record

dim gToto as toto
myRect = gToto.titi..rgnBBox
//
work fine enough?