Results 1 to 6 of 6

Thread: Upon Loading [RESOLVED]

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Jan 2003
    Posts
    154

    Upon Loading [RESOLVED]

    Ok I have "Check1" and if it is checked then upon loading a file into "List1" I want it to add "_" after each name into "List1" but if it is not checked then it acts normal.Id aprpeciate some help here...Thx guys
    Last edited by $peed & $ex; Jan 11th, 2003 at 03:23 PM.

  2. #2

    Thread Starter
    Addicted Member
    Join Date
    Jan 2003
    Posts
    154

    Re: Upo Loading

    COuld someone plz help thx guys

  3. #3
    Former Admin/Moderator MartinLiss's Avatar
    Join Date
    Sep 1999
    Location
    San Jose, CA
    Posts
    33,431
    OK, first of all please do not bump your posts just because you haven't received an answer after just an hour. Second, you probably didn't get an answer because you title is "Upo Loading" and nobody knows what "Upo" is. I assume you meant "Upon Loading" and if you see you have made a mistake like that you should edit the title. Third, here (I think) is your answer.

    When you are loading the listbox do something like
    VB Code:
    1. If Check1.Value = vbChecked Then
    2.     List1.AddItem MyString & "_"
    3. Else
    4.     List1..AddItem MyString
    5. End If

  4. #4

    Thread Starter
    Addicted Member
    Join Date
    Jan 2003
    Posts
    154
    Well 1 I was told I could bump them 2 I dont know how to edit im new and 3 thx man

  5. #5
    Former Admin/Moderator MartinLiss's Avatar
    Join Date
    Sep 1999
    Location
    San Jose, CA
    Posts
    33,431
    OK, and here is one more thing you should do (and it explains how to edit the title ), go to your original post in this thread, click the Edit button that you see at the bottom next to the Quote button, change the Subject to "Upon Loading [Resolved]" and click the Save Changes button.

  6. #6

    Thread Starter
    Addicted Member
    Join Date
    Jan 2003
    Posts
    154
    Ok kewl thx

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