I need to create a completely different form layout depending on the setting of a boolean switch (Radio button) on a form.
I have added a boolean radio button to the layout called AltForm and I was going to use the visibility property to hide or show the rows as I would do in vidual basic. Only I can't seem to figure out how to change the property. The parameter textboxt10.visi ble does nothing except cause a syntax error.
I had wanted to do somthing like this;
But Visible causes a syntax error.
I have added a boolean radio button to the layout called AltForm and I was going to use the visibility property to hide or show the rows as I would do in vidual basic. Only I can't seem to figure out how to change the property. The parameter textboxt10.visi ble does nothing except cause a syntax error.
I had wanted to do somthing like this;
Code:
=IIF(Parameters!AltForm.Value = True,Textbox10.visible = False,Textbox10.Visible = True );"For " + IIF(Parameters!ShowTrans.Value = "All Quotations","Quotations","Orders") & " Due between " & Format(Parameters!StartDate.Value,"d MMM yyyy") & " and " & Format(Parameters!EndDate.Value,"d MMM yyyy") & IIF( Parameters!ShowTrans.Value = "With Stock On Hand",", only showing products with stock available","") & IIF( Parameters!Customer.Value = -1,"",", for customer " & First(Fields!CustomerDescription.Value, "CustomerDisplay")) & Code.ShowProductType( Parameters!ProductType.Value)
Comment