1 Attachment(s)
[RESOLVED] listbox field name and value
I have problem here. How I can enchance the display that show the field name and value in the listbox to make it look beautiful in term of alignment ?
I have field name seperate with colon : and its value. I want it show something like this
Code:
ABCDE : 1234
Ab : 2345
Abc : 5643
Code:
List2.AddItem List1.List(j) & " : " & recs.Fields(List1.List(j)).Value
Re: listbox field name and value
add vbtab to add tab to the text to align
List2.AddItem List1.List(j) & vbtab & vbtab & " : " & recs.Fields(List1.List(j)).Value