adjust height from vba

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to open a form and adjust the height of one of the text boxes on
it. Is this possible? I don't receive an error or anything like that but the
text box is just blank. I have tried to adjust the height before the data is
entered in it and after but its always blank. This is my code:

stDocName = "Help Screen"
DoCmd.OpenForm stDocName

Forms![Help Screen].helpTxt = "..............."

Forms![Help Screen].helpTxt.Height = 10
 
ACCESS uses twips... in general, 1440 twips = one inch.

Thus, your 1000 is 1000 twips, or about 0.7 inch.
 

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