Results 1 to 4 of 4

Thread: Need Help

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Dec 2011
    Posts
    25

    Exclamation Need Help

    Hello
    Guys Am Making Some Thing For My Customers In Computer
    I Am Selling Socks4 And Socks5
    i Have Made 1 Tool
    Tool Is Simple./
    And i Have Add * webbrowser1
    Now i have create 1 button . Save Sock*
    i Want Some 1 Click On Button And he Get Text File Form Save Has .txt
    i have tried and searching and i find this web site i hope i hope you guys will help me

    my screen shot for my software is here



    if some 1 no please share..

    Thank You.

  2. #2

    Thread Starter
    Junior Member
    Join Date
    Dec 2011
    Posts
    25

    Re: Need Help

    There is no help ?

  3. #3
    Junior Member TheCogsGear's Avatar
    Join Date
    Dec 2011
    Posts
    16

    Re: Need Help

    I'd love to help but i dont know what you're trying to ask. Try re-wording your question

  4. #4
    Junior Member TheCogsGear's Avatar
    Join Date
    Dec 2011
    Posts
    16

    Re: Need Help

    For that button, assign this sub:
    Code:
    'Replace the '#' char with what the controles are numbered,
    'That was kindof self explanitory tho xD
    
    Public Sub Button#_Click() Handles Button#.Click
       Dim Path as String = "C:\ListOfSockets.txt"
       Dim textWriter1 as New System.IO.StreamWriter(Path)
       For Each item as String in Listbox#.Items
          textWriter1.WriteLine(item)
       Next
       textWriter1.Close()
       Msgbox("Sockets have been saved to: " & path)
    End Sub
    This was not network related, I wouldnt have put this post here. But i think thats what you wanted.

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