initialize value in userform when opened

  • Thread starter Thread starter strive4peace
  • Start date Start date
S

strive4peace

Hi All,

I have a userform (name=imagetype), that has an unbound texbox control
(name=MaxNulls). When the userform opens, I would like to initialize
the value of MaxNulls to 3 ...is this possible?

thanks!


Warm Regards,
Crystal
*
(: have an awesome day :)
*
MVP Access

*
 
Behind the userform:

Private Sub UserForm_Initialize()
me.maxnulls.value = "3"
End Sub
 
fantastic! thanks, Dave!


Warm Regards,
Crystal
*
(: have an awesome day :)
*
MVP Access

*
 

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

Back
Top