Results 1 to 6 of 6

Thread: vbTAB

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Aug 2000
    Posts
    208

    Post

    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...


  2. #2
    Member
    Join Date
    Jul 2000
    Location
    BFE in Oregon
    Posts
    33
    Could you edit that post to include a question?
    And a description of the problem you are having.
    Thanks
    Glacius Cool
    Concept Designer
    VB5sp4,VC++6sp3

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Aug 2000
    Posts
    208
    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..

  4. #4

    Thread Starter
    Addicted Member
    Join Date
    Aug 2000
    Posts
    208
    like:
    Item1 = Find_all_before (vbtab & vbtab & vbtab)
    Item2 = Find_all_after (vbtab & vbtab & vbtab)
    understand now ??


  5. #5

    Thread Starter
    Addicted Member
    Join Date
    Aug 2000
    Posts
    208
    it's ok..
    I found..

  6. #6
    Guest
    Try this:

    Code:
    strList = Replace(List1, vbTab, "")
    MsgBox strList

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width