CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Oct 2004
    Posts
    14

    Finding names in a list box

    My program is almost complete with the help from others here on codeguru. Thank you all for your help, but i need one last thing which i still cant figure out how to find certain names in a text file and display them back into the listbox with all their information in that same line in the text file. I've looked at some examples but they are always for C++ or VB or VB6 I need help with VB.NET and simpler codes. Cause im still pretty new to VB.NET. Thanks for anyone who reads this and replies.

  2. #2
    Join Date
    Feb 2002
    Location
    Atlanta, Georgia, USA
    Posts
    155

    Re: Finding names in a list box

    I think this is related to your latest question, right?
    http://www.codeguru.com/forum/showthread.php?t=320589

  3. #3
    Join Date
    Oct 2004
    Posts
    14

    Re: Finding names in a list box

    no its not related to that question, thats for adding things to a text file
    i need to be able to find things from a text file

    example: Tom Fish T141 (905-)887-5241 6.0

    I hav an input box requesting data say first name; which wud be Tom
    I want that to be sent to a list box with the rest of the information on that line (which would be Tom Fish T141 (905)887-5241)

    I cant seem to find any help for this. Please someone reply back.

  4. #4
    Join Date
    Feb 2002
    Location
    Atlanta, Georgia, USA
    Posts
    155

    Re: Finding names in a list box

    While saving the text save every name and related data with a new line. Now while reading back, use the StremReader.


    This should tell you how to read the file line by line
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconReadingTextFromFile.asp

    After this, in the loop you have to check for the name user has entered in the input box.

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

Featured