Página 1 de 1

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

Publicado: Mié Jul 19, 2006 7:10 am
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.

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

Publicado: Mié Jul 19, 2006 10:11 am
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.
>
>
>
>

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

Publicado: Mié Jul 19, 2006 10:24 am
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

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

Publicado: Mié Jul 19, 2006 12:09 pm
por jfgimenez
Capsol,
Fixed! It will be available soon.
--
Regards,
Jose F. Gimenez
http://www.xailer.com

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

Publicado: Jue Jul 20, 2006 4:06 am
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
>

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

Publicado: Jue Jul 20, 2006 10:28 am
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
>>
>
>

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

Publicado: Jue Jul 20, 2006 10:29 am
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