Extract a listbox header name of a particular column?

ssteinke

for what it's worth
Local time
Today, 07:43
Joined
Aug 2, 2003
Messages
195
Anyone know how to reference the name or header of a particular column in a listbox control?

i've tried,

Code:
Me.lstBox.Column(1).Name

Scott
 
Scott,

I don't have any refs with me, but ...

Me.YourListBox.ItemData(0).Column(WhateverColumn - 1)

Wayne
 
Thanks Wayne, you got me thinking the right way, the smallest things always seem to be the most frustrating :)

Code:
Me.lstItems.Column(1, 0)

Scott
 

Users who are viewing this thread

Back
Top Bottom