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

  • Thread starter Thread starter Mae
  • Start date Start date
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
 
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
 
Back
Top