Auto-Sizing or Auto-Moving?? a Control Field

M

Mae

I'm not sure if this is possible....
I have FirstName and LastName fields, and I want to design
the form so that there will be a regular space between the
first and last names, regardless of the length of the
first name. In other words, if the first name is short,
the last name will move left so there is not a long space
between them; if the first name is long, the last name
will shift right so they don't overlap.

Any help is greatly appreciated.
-- M
 
E

Eric

If your not going to edit the names you can concatenate
them on the form.
ex.
Add a new unbound control and set the contro source =

[first name]&" "&[Last name]
or
[Last name]&", " &[first name]

Eric
 

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