Results 1 to 9 of 9

Thread: [CODES HERE!] Help me do this please~ (ONLINE Login system)

  1. #1

    Thread Starter
    Member
    Join Date
    Apr 2009
    Posts
    37

    Cool [CODES HERE!] Help me do this please~ (ONLINE Login system)


    Thank a lot
    Last edited by leon100243; Jun 30th, 2009 at 08:48 AM.

  2. #2

  3. #3
    Addicted Member
    Join Date
    Dec 2008
    Posts
    185

    Re: Help me do this please~

    I like your curly arrow

  4. #4
    Fanatic Member
    Join Date
    Oct 2008
    Location
    Dominican Republic
    Posts
    733

    Re: Help me do this please~

    Perhaps you should check out the login form examples in the codebank.
    Last edited by tassa; Jun 29th, 2009 at 12:32 PM. Reason: Fixed the provided link....
    "In our profession, precision and perfection are not a dispensable luxury, but a simple necessity."
    Niklaus E. Wirth


    Rate any post that helped you, it's a good way of saying thanks
    Please specify your Visual Studio Version!

    Why rating is useful

    My Code Bank Submissions: How to determine Windows Version| Working With Mouse Events | Blocking Input Using API | Get host's IP | Minimize to system tray "animated" | Colored ListBox (custom fonts, colors, highlight) Updated -New Class! | [VS 2008] Strong encryption and hashing class - Updated! 31/August/2009 | Create a shortcut using IWshRuntimeLibrary

  5. #5
    Frenzied Member CoachBarker's Avatar
    Join Date
    Aug 2007
    Location
    Central NY State
    Posts
    1,121

    Re: Help me do this please~

    Your link goes to a "Sorry - no matches. Please try some different terms." page.
    Thanks
    CoachBarker

    Code Bank Contribution
    Login/Manage Users/Navigate Records
    VB.Net | C#

    Helpful Links: VB.net Tutorial | C Sharp Tutorial | SQL Basics

  6. #6

    Thread Starter
    Member
    Join Date
    Apr 2009
    Posts
    37

    Re: Help me do this please~

    ahmm.....

  7. #7
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    110,344

    Re: Help me do this please~

    Maybe noone's answering because, like NickThissen, they don't understand what exactly it is you want and, if you can't be bothered to take the time to explain it, they can't be bothered to take the time to work it out. You get out what you put in. If you would like us to make an effort for you then you really should make an effort for us.

  8. #8
    Fanatic Member
    Join Date
    Oct 2008
    Location
    Dominican Republic
    Posts
    733

    Re: Help me do this please~

    Here, seems like the search has expired or w.e, here are the direct link to what I think you might be talking about... Please be clearer

    Example
    "In our profession, precision and perfection are not a dispensable luxury, but a simple necessity."
    Niklaus E. Wirth


    Rate any post that helped you, it's a good way of saying thanks
    Please specify your Visual Studio Version!

    Why rating is useful

    My Code Bank Submissions: How to determine Windows Version| Working With Mouse Events | Blocking Input Using API | Get host's IP | Minimize to system tray "animated" | Colored ListBox (custom fonts, colors, highlight) Updated -New Class! | [VS 2008] Strong encryption and hashing class - Updated! 31/August/2009 | Create a shortcut using IWshRuntimeLibrary

  9. #9

    Thread Starter
    Member
    Join Date
    Apr 2009
    Posts
    37

    Re: Help me do this please~

    Thanks a lot!
    ...
    Oh!Finished!
    Here you are:
    Code:
       Private Sub FindUser(ByVal url As String)
            WebClient2.DownloadFileAsync(New Uri(url), "usern.txt")
        End Sub
    Code:
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    FindUser("http://www.helpmedothisplease.com/usern.txt")
    End Sub
    Code:
    Private Sub WebClient1_DownloadFileCompleted(ByVal sender As System.Object, ByVal e As System.ComponentModel.AsyncCompletedEventArgs) Handles WebClient1.DownloadFileCompleted
    Dim usern() As String = System.IO.File.ReadAllLines("usern.txt")
            For Each strItem As String In usern
                Application.DoEvents()
                If strItem = TextBox1.Text Then
            If My.Computer.FileSystem.FileExists("usern.txt") Then
                My.Computer.FileSystem.DeleteFile("usern.txt")
            End If
                msgbox("success!")
                    Exit Sub
                End If
            Next
            If My.Computer.FileSystem.FileExists("usern.txt") Then
                My.Computer.FileSystem.DeleteFile("usern.txt")
            End If
            msgbox("error!")

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