Partial autofill a textbox

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.
 
S

Stewart Tanner

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top