Dan W
Dan W

Reputation: 131

Word 2010 ActiveX control forms - formatting issues

Hopefully a quick one

I am creating a form in Word with a Save macro that uses an ActiveX Label as a button. The label works fine as a button but I am having 2 issues:

  1. when using the document in normal mode, the coding text in curly brackets for the label is still visible - see image

enter image description here

How do I get rid of this?

  1. When printing the form, the button pushes the header text down a line:

enter image description here

You can see in the first picture that there is no gap here.

Thanks for your help.

Upvotes: 0

Views: 140

Answers (1)

Cindy Meister
Cindy Meister

Reputation: 25693

(1) Press Alt+F9 to toggle off display of field codes (and make sure you're not in Design Mode).

(2) is impossible to be sure without having the document in front of me but...

Printing problems are notorious with ActiveX controls, which were designed for use with UserForms, not for the document surface. Your best bet for stability would be to use a one-row, two-column table with the button on the left and the address on the right.

Or use a MacroButton field code instead of an ActiveX control.

Upvotes: 1

Related Questions