I do a list box whit vbtab..
Item1 vbtab vbtab vbtab Item2
So.
I get the first line
list1.list(0)
and I want to slip the Item1 and the Item2
in the variable:
VARclass = Item1
VARapp = Item2
Ps.: I have 3 vbTAB between...
Printable View
I do a list box whit vbtab..
Item1 vbtab vbtab vbtab Item2
So.
I get the first line
list1.list(0)
and I want to slip the Item1 and the Item2
in the variable:
VARclass = Item1
VARapp = Item2
Ps.: I have 3 vbTAB between...
Could you edit that post to include a question?
And a description of the problem you are having.
Thanks
I put 2 thing in my list box:
item1 and item2
and between Item1 and Item2 , you can find three vbTAB
I want to getback my 2 item from the text box..
like:
Item1 = Find_all_before (vbtab & vbtab & vbtab)
Item2 = Find_all_after (vbtab & vbtab & vbtab)
understand now ??
it's ok..
I found..
Try this:
Code:strList = Replace(List1, vbTab, "")
MsgBox strList