Changing column heading

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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.
 
You can change the names in teh sql query.

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