How do I change the spacing in a label box?

S

smags

I inserted a label box while creating a form. In order to go to the 2nd line
within the label box I hit Ctrl Enter. The spacing between the lines is too
big (looks like double space). How do I change the space so that it looks
like it's single spaced?
 
S

smags

I just figured out that it's the FONT that decides how much space will be
between each line of text within the label box.
 
F

fredg

I just figured out that it's the FONT that decides how much space will be
between each line of text within the label box.

Well, yes... and no.

Check the control's LineSpacing property (on the Format tab). Someone
may have set it to a measurement greater than 0".

From Access help:

LineSpacing Property
You can use the LineSpacing property to specify or determine the
location of information displayed within a label or text box control.
Read/write Integer.

expression.LineSpacing

expression Required. An expression that returns one of the objects
in the Applies To list.

Remarks
A control's displayed information location is the distance measured
between each line of the displayed information. To use a unit of
measurement different from the setting in the Regional Options dialog
box in Windows Control Panel, specify the unit, such as cm or in (for
example, 3 cm or 2 in).

In Visual Basic, use a numeric expression to set the value of this
property. Values are expressed in twips.

You can set these properties by using the property sheet, a macro, or
Visual Basic.
 

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