Página 1 de 1
Help File appears to be wrong
Publicado: Mar May 06, 2008 9:04 am
por Nick Hilder
Hi Guys
This is wrong in the help file ( I think )
mk:@MSITStore:X:Xailerhelpxaileren.chm::/programacionorie ntadaaobjet.htm
PROPERTY cText INIT "" READ ::GetText() WRITE ::SetText( Value )
It should be, the example doesn't work.
PROPERTY cText INIT "" READ GetText WRITE SetText
Nick
Help File appears to be wrong
Publicado: Mar May 06, 2008 10:25 am
por jfgimenez
Nick,
> This is wrong in the help file ( I think )
>
>
> mk:@MSITStore:X:Xailerhelpxaileren.chm::/programacionorie ntadaaobjet.htm
>
>
>
> PROPERTY cText INIT "" READ ::GetText() WRITE ::SetText( Value )
>
>
>
>
> It should be, the example doesn't work.
>
> PROPERTY cText INIT "" READ GetText WRITE SetText
Yes, you are right. The OOP enhanced subsystem was modified long time ago,
but the help file was not updated acordly.
The first line should be:
PROPERTY cText INIT "" READ INLINE ::GetText() WRITE INLINE ::SetText(
Value )
or
PROPERTY cText INIT "" READ METHOD GetText WRITE METHOD SetText
or just like you have proposed.
Thanks.
--
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info
Help File appears to be wrong
Publicado: Mar May 06, 2008 10:25 am
por jfgimenez
Nick,
> This is wrong in the help file ( I think )
>
>
> mk:@MSITStore:X:Xailerhelpxaileren.chm::/programacionorie ntadaaobjet.htm
>
>
>
> PROPERTY cText INIT "" READ ::GetText() WRITE ::SetText( Value )
>
>
>
>
> It should be, the example doesn't work.
>
> PROPERTY cText INIT "" READ GetText WRITE SetText
Yes, you are right. The OOP enhanced subsystem was modified long time ago,
but the help file was not updated acordly.
The first line should be:
PROPERTY cText INIT "" READ INLINE ::GetText() WRITE INLINE ::SetText(
Value )
or
PROPERTY cText INIT "" READ METHOD GetText WRITE METHOD SetText
or just like you have proposed.
Thanks.
--
Regards,
Jose F. Gimenez
http://www.xailer.com
http://www.xailer.info