http://i685.photobucket.com/albums/v.../vb2008_p4.jpg
Thank a lot:D
Printable View
http://i685.photobucket.com/albums/v.../vb2008_p4.jpg
Thank a lot:D
Maybe you should try explaining it in words, as this picture isn't really clear to me.
I like your curly arrow :D
Perhaps you should check out the login form examples in the codebank.
Your link goes to a "Sorry - no matches. Please try some different terms." page.
ahmm.....
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.
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
Thanks a lot!:D
...
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
:D:D:cool::cool::cool: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!")