Text Box on MS Outlook Task Template I Created

  • Thread starter Thread starter Wayne
  • Start date Start date
W

Wayne

I created a custom template with 2 text boxes on page 2. However, I just
realized that I cannot TAB or ENTER without leaving the text box. It would
appear it is set up to accept only a string of text.

Is there a way to change this in the text box so that I can use the TAB and
ENTER keys?

Thanks.
 
The properties you need are on the Advanced Properties dialog for the control:

EnterKeyBehavior = -1 (True)
Multiline = -1 (True)
TabKeyBehavior = -1 (True)
TabStop = 0 (False)
 
Back
Top