Changing column heading

M

Mark

Hello all

I have a list box with "column heads" property set to "yes". Is there a way to make these more meaningful instead of the name I gave the field? I can always just put a lable above I guess, but thought this looks cleaner

Thanks

Mark
 
M

Mark

Sorry, I had a brain spaz. Right after posting it came to me

For others just change the caption on the field in the table.
 
A

Albert D. Kallal

You can change the names in teh sql query.

select fn as FirstName, Ln as LastName, CO as Compnay from tblCustomers
order by ln
 
Top