Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Visible property 1

Status
Not open for further replies.

allany

Programmer
Jan 14, 2005
10
GB
Hi again!

when you have a data window, and you have a groubbox eg, and you deselect the visible property and have the option to add code behind it to make it visible for a certain situation. What i was wondering is what the convention/syntax is for this area?

Can you have something like

if (something) elseif (soething) elseif (something)

so far i am only doing ifs, and at the moment struggling to make a groubbox appear as i want as i have 2 factors that causes the appearance of the box. This complicates the ifs...

thanks.
 
syntax for these expressions is
Code:
if (boolean, true condition, false condition)
so multiple conditions can be coded:
Code:
if (boolean1, if (boolean2, true condition2, false condition2), false condition1)

Visible property is set to 1 (not visible) or 0 (visible)

Matt

"Nature forges everything on the anvil of time
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top