form1.Guideline_Choices.Guideline_Choices::change - (FormCalc, client)
if(Guideline_Choices == "Fences") then
Fences.presence ="visible"
Roofs.presence = "hidden"
Guideline_Choices = "hidden"
elseif(Guideline_Choices == "Roofs") then
Roofs.presence = "visible"
Fences.presence = "hidden"
Guideline_Choices = "hidden"
endif
When I select "Fences", the subform for "Roofs" is displayed. When I select "Roofs", the subform for "Fences" is displayed. Any idea what might be wrong?