Click here to Skip to main content
15,891,184 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi all i had a question, ihad a requirement where i need to hide based on expression , i have a recatangle with two tables and one textbox in it , i have to hide the rectangle if the fields of table are empty, i had the expression but it is not working , is thre any way i can hide the rectangle and the conetents in ti based on expression? thanks in advance
Posted
Comments
Sandeep Mewara 4-May-11 1:00am    
How do you expect us to help when you post incomplete information?

What was the expression? How do you say that 'it is not working'? etc.
makwith9789 5-May-11 10:41am    
sorry the expression i am using looks like
iif(isnothing(Fileds!colname.vale,true,false)
i am using the same expression for tables to hide it works fine with tables but when it comes to textbox it is not hiding , all my tables and texbox are in one list control

1 solution

sorry the expression i am using looks like
iif(isnothing(Fileds!colname.vale,true,false)
i am using the same expression for tables to hide it works fine with tables but when it comes to textbox it is not hiding , all my tables and texbox are in one list control


Expression for textbox would be:
=iif(IsNothing(Fields!colname.Value), false, true)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900