Hiding Fill-In object

Kladkul

Member
Working with an application that requires me to show/hide various parts of the screen but I'm having trouble hiding any fill-ins. Here is some of the code I've tried:

Code:
v-cd-border:HIDDEN IN FRAME T-Main = TRUE.
v-cd-border:VISIBLE IN FRAME T-Main = FALSE.
v-cd-border:SENSITIVE IN FRAME T-Main = FALSE.

Used together or apart, these just seem to disable the fill-in but it is still visible.
 

sharkdim

Member
Working with an application that requires me to show/hide various parts of the screen but I'm having trouble hiding any fill-ins. Here is some of the code I've tried:

Code:
v-cd-border:HIDDEN IN FRAME T-Main = TRUE.
v-cd-border:VISIBLE IN FRAME T-Main = FALSE.
v-cd-border:SENSITIVE IN FRAME T-Main = FALSE.

Used together or apart, these just seem to disable the fill-in but it is still visible.

try this:
hide v-cd-border in frame t-main.
disable v-cd-border.
 
Top