Link to home
Start Free TrialLog in
Avatar of zimmer9
zimmer9Flag for United States of America

asked on

In Access 2003, how would you break a Caption string value so that it appears in 2 separate lines?

In Access 2003, if I go into DESIGN mode and navigate to a LABEL and double click on it,
then I am brought to the properties options for the LABEL.

Within the CAPTION, if I want to input the following value on 2 separate lines:

Import Automated Files: (DRS, WRS, Intellimatch, Balance, Pending)

How would I be able to make the CAPTION appear on 2 lines and break as follows:

Import Automated Files:
(DRS, WRS, Intellimatch, Balance, Pending)
Avatar of Rgonzo1971
Rgonzo1971

Hi,

pls try
Me.Label1.Caption = "Import Automated Files:" & Chr(13) & "(DRS, WRS, Intellimatch, Balance, Pending)"

Open in new window

or
Me.Label1.Caption = "Import Automated Files:" & vbNewLine & "(DRS, WRS, Intellimatch, Balance, Pending)"

Open in new window

Regards
ASKER CERTIFIED SOLUTION
Avatar of mbizup
mbizup
Flag of Kazakhstan image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial