Partial autofill a textbox

  • Thread starter Thread starter TomT
  • Start date Start date
T

TomT

I am trying figure out how to go about doing this and
hoping someone here can provide some suggestions.

I have a form when a checkbox is clicked I want to be able
to have some text entered in a textbox then also allow the
user to continue entering information in this textbox.

For example if checked then textbox will have
Once upon a time:
Else the texbox is empty.

Sounds like a dumb question, but just need a little push.


Thanks in advance for any assistance.
 
in the afterupdate event for the checkbox do something like
if me.checkbox = true then
me.textbox = "once upon a time"
else
me.textbox = null
end if
 
Back
Top