Hello. I am trying to test if there is something in a dynamic test field. If there is I want to display some information in another dynamic text field. If there is not I dont want to display any thing. How do i do this. I have tried the following
if(_root.txtQty1 != "" || _root.txtQty1 != Null)
{
....
....
....
}
if(_root.txtQty2 != "" || _root.txtQty2 != Null)
{
....
....
}
ect
ect
When i press the button that has this code it loads All the data even if there isnt anything in the txtQty field. is there any way to fix this.
Thanks
if(_root.txtQty1 != "" || _root.txtQty1 != Null)
{
....
....
....
}
if(_root.txtQty2 != "" || _root.txtQty2 != Null)
{
....
....
}
ect
ect
When i press the button that has this code it loads All the data even if there isnt anything in the txtQty field. is there any way to fix this.
Thanks