I am using a Multi Select List Box to display a list of names from a table, in order to select e-mail recipients. The names are in two fields: [Main]![First Name] and [Main]![Surname].
I have done this by using the following code for the rowsource:
This gives a rather undesired effect, in that shorter first names have a large gap before the surname. In addition, there is a dull separating line between the two columns, thus:
My questions:
I have done this by using the following code for the rowsource:
Code:
SELECT DISTINCTROW Main![e-mail], Main![First Name], Main!Surname FROM Main;
This gives a rather undesired effect, in that shorter first names have a large gap before the surname. In addition, there is a dull separating line between the two columns, thus:
Code:
Jane [COLOR="Silver"]|[/COLOR] Smith
Bartholomew [COLOR="silver"]|[/COLOR] Simpson
My questions:
- Is it possible to arrange the names so they appear in one column, with a space between them? (i.e. they would appear as written)
- If not, can I get rid of the separating line?
Many thanks in advance if you can help!