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.

How do I make class components visible in the IDE object debugger.

Xailer English public forum
Responder
Capsol Coder
Mensajes: 53
Registrado: Vie May 26, 2006 3:33 am

How do I make class components visible in the IDE object debugger.

Mensaje por Capsol Coder »

G'day,
How do I make components in my own class visible in the IDE object
debugger, like the system supplied classes.
When I inspect an object defined as MyClass in the debugger window the
'plus' does'nt explode the object like with the supplied classes.
I have tried using the VISIBLE parameter. Bu this makes no difference.
The object appears to behave properly otherwise, just that the debugger
won't view it.
Regards,
Leigh.
Avatar de Usuario
ignacio
Site Admin
Mensajes: 9253
Registrado: Lun Abr 06, 2015 8:00 pm
Ubicación: Madrid, Spain
Contactar:

How do I make class components visible in the IDE object debugger.

Mensaje por ignacio »

Capsol,
Make them published properties or components. If component you will see them
in boldface.
Regards,
"Capsol Coder" <nick__NOSPAM__@capsol.com.au> escribió en el mensaje
news:[email=44bdbed9@news.xailer.com...]44bdbed9@news.xailer.com...[/email]
> G'day,
>
> How do I make components in my own class visible in the IDE object
> debugger, like the system supplied classes.
>
> When I inspect an object defined as MyClass in the debugger window the
> 'plus' does'nt explode the object like with the supplied classes.
>
> I have tried using the VISIBLE parameter. Bu this makes no difference.
>
> The object appears to behave properly otherwise, just that the debugger
> won't view it.
>
> Regards,
> Leigh.
>
>
>
>
Ignacio Ortiz de Zúñiga
[Equipo de Xailer / Xailer team]
https://www.xailer.com
Avatar de Usuario
jfgimenez
Site Admin
Mensajes: 5706
Registrado: Lun Abr 06, 2015 8:48 pm
Contactar:

How do I make class components visible in the IDE object debugger.

Mensaje por jfgimenez »

Capsol,
> How do I make components in my own class visible in the IDE object
> debugger, like the system supplied classes.
>
> When I inspect an object defined as MyClass in the debugger window the
> 'plus' does'nt explode the object like with the supplied classes.
>
> I have tried using the VISIBLE parameter. Bu this makes no difference.
>
> The object appears to behave properly otherwise, just that the debugger
> won't view it.
You have to declare them as PROPERTY or COMPONENT. DATA's are not visible in
the debugger (for now).
--
Regards,
Jose F. Gimenez
http://www.xailer.com
José F. Giménez
[Equipo de Xailer / Xailer team]
http://www.xailer.com
http://www.xailer.info
Avatar de Usuario
jfgimenez
Site Admin
Mensajes: 5706
Registrado: Lun Abr 06, 2015 8:48 pm
Contactar:

How do I make class components visible in the IDE object debugger.

Mensaje por jfgimenez »

Capsol,
Fixed! It will be available soon.
--
Regards,
Jose F. Gimenez
http://www.xailer.com
José F. Giménez
[Equipo de Xailer / Xailer team]
http://www.xailer.com
http://www.xailer.info
Capsol Coder
Mensajes: 53
Registrado: Vie May 26, 2006 3:33 am

How do I make class components visible in the IDE object debugger.

Mensaje por Capsol Coder »

How do I declare PROPERTY or COMPONENT.
What is the syntax please.
I cant' find any help on these commands/parameters.
Regards,
Leigh
"Jose F. Gimenez" <jfgimenez@wanadoo.es> wrote in message
news:44bdec58$[email=1@news.xailer.com...]1@news.xailer.com...[/email]
> Capsol,
>
>> How do I make components in my own class visible in the IDE object
>> debugger, like the system supplied classes.
>>
>> When I inspect an object defined as MyClass in the debugger window the
>> 'plus' does'nt explode the object like with the supplied classes.
>>
>> I have tried using the VISIBLE parameter. Bu this makes no difference.
>>
>> The object appears to behave properly otherwise, just that the debugger
>> won't view it.
>
> You have to declare them as PROPERTY or COMPONENT. DATA's are not visible
> in the debugger (for now).
>
> --
> Regards,
>
> Jose F. Gimenez
> http://www.xailer.com
>
Avatar de Usuario
ignacio
Site Admin
Mensajes: 9253
Registrado: Lun Abr 06, 2015 8:00 pm
Ubicación: Madrid, Spain
Contactar:

How do I make class components visible in the IDE object debugger.

Mensaje por ignacio »

Capsol,
Documentation Chapter: Class hierarchy: Object Oriented Programming.
Regards,
"Capsol Coder" <nick__NOSPAM__@capsol.com.au> escribió en el mensaje
news:44bee525$[email=1@news.xailer.com...]1@news.xailer.com...[/email]
> How do I declare PROPERTY or COMPONENT.
> What is the syntax please.
> I cant' find any help on these commands/parameters.
>
> Regards,
> Leigh
>
> "Jose F. Gimenez" <jfgimenez@wanadoo.es> wrote in message
> news:44bdec58$[email=1@news.xailer.com...]1@news.xailer.com...[/email]
>> Capsol,
>>
>>> How do I make components in my own class visible in the IDE object
>>> debugger, like the system supplied classes.
>>>
>>> When I inspect an object defined as MyClass in the debugger window the
>>> 'plus' does'nt explode the object like with the supplied classes.
>>>
>>> I have tried using the VISIBLE parameter. Bu this makes no difference.
>>>
>>> The object appears to behave properly otherwise, just that the debugger
>>> won't view it.
>>
>> You have to declare them as PROPERTY or COMPONENT. DATA's are not visible
>> in the debugger (for now).
>>
>> --
>> Regards,
>>
>> Jose F. Gimenez
>> http://www.xailer.com
>>
>
>
Ignacio Ortiz de Zúñiga
[Equipo de Xailer / Xailer team]
https://www.xailer.com
Avatar de Usuario
jfgimenez
Site Admin
Mensajes: 5706
Registrado: Lun Abr 06, 2015 8:48 pm
Contactar:

How do I make class components visible in the IDE object debugger.

Mensaje por jfgimenez »

Capsol,
> How do I declare PROPERTY or COMPONENT.
> What is the syntax please.
> I cant' find any help on these commands/parameters.
COMPONENT is exactly as a DATA, but this command has no clauses like init,
or so. Also, it can be declared only one component for command; that is:
COMPONENT c1, c2, c3
is incorrect. The correct way is:
COMPONENT c1
COMPONENT c2
COMPONENT c3
The PROPERTY command is explained in the help file: "Xailer Guide" >
"Classes Hierarchy" > "The properties"
--
Regards,
Jose F. Gimenez
http://www.xailer.com
José F. Giménez
[Equipo de Xailer / Xailer team]
http://www.xailer.com
http://www.xailer.info
Responder