S
seeker
When a text box is right clicked an option box appears which gives change to
as an option to change the text box to a different control. When the current
record is new I would like the text box to change to a combo box to simplify
and assure correct data entry. How can this be done other than oncurrent
if me.newrecord then
cmbMembername.visible = true
text53..visible = false
else
cmbmembername.visible = false
text53.visible = true
end if
Thanks in advance
as an option to change the text box to a different control. When the current
record is new I would like the text box to change to a combo box to simplify
and assure correct data entry. How can this be done other than oncurrent
if me.newrecord then
cmbMembername.visible = true
text53..visible = false
else
cmbmembername.visible = false
text53.visible = true
end if
Thanks in advance