Hi
I am using one combobox(unbound) on my main form. I want to hide and unhide the subform according to my selection on combo box.
I am trying like this:
afterupdate()
if combo83.column(0) then
me.subform1.visible=true
else
if combo83.cloumn(1) then
me.subform2.visible=true
end if
end if
i tryied same on form_current()
column (0) is ok but
column(1) is not working
thanks
I am using one combobox(unbound) on my main form. I want to hide and unhide the subform according to my selection on combo box.
I am trying like this:
afterupdate()
if combo83.column(0) then
me.subform1.visible=true
else
if combo83.cloumn(1) then
me.subform2.visible=true
end if
end if
i tryied same on form_current()
column (0) is ok but
column(1) is not working
thanks