hello there,
i'm trying to work something out of this
which apparently doesn't work.VB Code:
MsgBox List4.ItemData(x, List4.Column(0))
can someone correct me on the syntax?
i'm trying to show ItemData(x) in Column(0)
note: ms access 03 vba
Astro
Printable View
hello there,
i'm trying to work something out of this
which apparently doesn't work.VB Code:
MsgBox List4.ItemData(x, List4.Column(0))
can someone correct me on the syntax?
i'm trying to show ItemData(x) in Column(0)
note: ms access 03 vba
Astro
Try..
VB Code:
MsgBox List4.Column(0,List4.ListIndex)
hey dannymking,
yea that works but i have a loop integer x
list4.itemdata(x) works but i need the specific column
=)
Thanks
Astro
Hey there,
i got it! list4.column(0, x)