ssteinke for what it's worth Local time Today, 07:43 Joined Aug 2, 2003 Messages 195 Jul 19, 2006 #1 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
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
W WayneRyan AWF VIP Local time Today, 12:43 Joined Nov 19, 2002 Messages 7,122 Jul 19, 2006 #2 Scott, I don't have any refs with me, but ... Me.YourListBox.ItemData(0).Column(WhateverColumn - 1) Wayne
Scott, I don't have any refs with me, but ... Me.YourListBox.ItemData(0).Column(WhateverColumn - 1) Wayne
ssteinke for what it's worth Local time Today, 07:43 Joined Aug 2, 2003 Messages 195 Jul 19, 2006 #3 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
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