Column Headings on a List Box

  • Thread starter Thread starter Wendy
  • Start date Start date
W

Wendy

Hi

I have an unbound list box on a form and I would like to put my own titles
above the fields. I can only see a columnheading yes/no property, and that
shows the field names as in the table. I would like them to be a bit more
user friendly. Is it possible to use my own headings?

Thanks

Wendy
 
How about use an Alias for the fields in the Row Source property of the list
box?

Example:

SELECT FirstName AS [First Name],
FamilyName AS [Family Name]
FROM Table1;
 

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

Back
Top