In order for this site to work correctly we need to store a small file (called a cookie) on your computer. Most every site in the world does this, however since the 25th of May 2011, by law we have to get your permission first. Please abandon the forum if you disagree.

Para que este foro funcione correctamente es necesario guardar un pequeño fichero (llamado cookie) en su ordenador. La mayoría de los sitios de Internet lo hacen, no obstante desde el 25 de Marzo de 2011 y por ley, necesitamos de su permiso con antelación. Abandone este foro si no está conforme.

Help File appears to be wrong

Xailer professional forum in English
Responder
Nick Hilder
Mensajes: 328
Registrado: Mar Nov 21, 2006 2:10 am

Help File appears to be wrong

Mensaje 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
Avatar de Usuario
jfgimenez
Site Admin
Mensajes: 5718
Registrado: Lun Abr 06, 2015 8:48 pm
Contactar:

Help File appears to be wrong

Mensaje 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
José F. Giménez
[Equipo de Xailer / Xailer team]
http://www.xailer.com
http://www.xailer.info
Avatar de Usuario
jfgimenez
Site Admin
Mensajes: 5718
Registrado: Lun Abr 06, 2015 8:48 pm
Contactar:

Help File appears to be wrong

Mensaje 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
José F. Giménez
[Equipo de Xailer / Xailer team]
http://www.xailer.com
http://www.xailer.info
Responder