Forum ViSiBLe

Bem Vindo
Se registrares neste fórum, podes fazer parte da nossa comunidade.Prezamos aqui pela participação ACTIVA de cada membro.


Atençao: Nao precisa Confirma a sua conta no hotmail (Basta Registrar e Começar a participar do forum.)

Forum ViSiBLe

Bem Vindo
Se registrares neste fórum, podes fazer parte da nossa comunidade.Prezamos aqui pela participação ACTIVA de cada membro.


Atençao: Nao precisa Confirma a sua conta no hotmail (Basta Registrar e Começar a participar do forum.)

WWW.FORUMVISIBLE.COM

Temos vagas na STAFF !! Clique Aqui!

Últimos assuntos

» Bot Openkore Configurado 06/12/2017 + Tutorial
[Tutorial] WebLogin , como criar um Login de Web VB Empty12/19/2017, 18:48 por MrViSiBLe

» MU LIVE SEASON 2 | INAUGURA DOMINGO 17/09
[Tutorial] WebLogin , como criar um Login de Web VB Empty9/2/2017, 13:51 por MrViSiBLe

» Sorteio Perfumes - Forum ViSiBLe
[Tutorial] WebLogin , como criar um Login de Web VB Empty8/25/2017, 08:27 por Convidado

» Novas Vagas Para Staff
[Tutorial] WebLogin , como criar um Login de Web VB Empty8/24/2017, 15:20 por MrViSiBLe

» CSGO [Internal/External] Multi-Hack AIMBOT + TRIGGERBOT + ESP + BHOP
[Tutorial] WebLogin , como criar um Login de Web VB Empty8/22/2017, 03:04 por MrViSiBLe

» REB00T 31/07/2017
[Tutorial] WebLogin , como criar um Login de Web VB Empty8/22/2017, 03:01 por MrViSiBLe

» [CS:GO] HENTAIWARE 19/08/2017 | LEGIT | RAGE | ESP | GLOVES | FACEIT |
[Tutorial] WebLogin , como criar um Login de Web VB Empty8/22/2017, 02:58 por MrViSiBLe

» DeviceCheats CS:GO Gratuito 31/07/2017
[Tutorial] WebLogin , como criar um Login de Web VB Empty8/22/2017, 02:56 por MrViSiBLe

» [CS:GO] External - Glow ESP | Triggerbot | RCS | BunnyHop | Noflash
[Tutorial] WebLogin , como criar um Login de Web VB Empty8/22/2017, 02:53 por MrViSiBLe

» [CS:GO] GLOW ESP 21/08/2017
[Tutorial] WebLogin , como criar um Login de Web VB Empty8/22/2017, 02:49 por MrViSiBLe


    [Tutorial] WebLogin , como criar um Login de Web VB

    MrViSiBLe
    MrViSiBLe
    Administrador
    Administrador


    Número de Mensagens : 3779
    Idade : 32
    Localização : Cuiaba
    Agradecimentos Agradecimentos : 864
    Data de inscrição : 10/12/2008

    [Tutorial] WebLogin , como criar um Login de Web VB Empty [Tutorial] WebLogin , como criar um Login de Web VB

    Mensagem por MrViSiBLe 7/20/2010, 21:45

    Olha pessoa!
    Eu dinovo ...........

    Outro simples tutorial em Visual Basic 2008


    1-Vomos trabalhar!!!



    1-button
    2- textboxes ou 1 button e 3 textboxes
    1- Progressbar
    1-checkbox



    Código:

    Imports System.Net
    Imports System.IO

    Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Try
    Dim myWebReq As HttpWebRequest
    Dim myWebResp As HttpWebResponse
    Dim encoding As New System.Text.ASCIIEncoding()
    Dim data() As Byte
    Dim postData As String = "Username=" & TextBox1.Text & "Password=" & TextBox2.Text & "op=Login"
    System.Text.Encoding.ASCII.GetBytes(postData)
    Dim sr As StreamReader
    data = encoding.GetBytes(postData)
    myWebReq = WebRequest.Create(TextBox3.Text)
    ProgressBar1.Value = 15
    myWebReq.Method = "POST"
    ProgressBar1.Value = 18
    myWebReq.ContentType = "application/x-www-form-urlencoded"
    ProgressBar1.Value = 33
    ProgressBar1.Value = 40
    myWebReq.ContentLength = data.Length
    Dim myStream As Stream = myWebReq.GetRequestStream()
    ProgressBar1.Value = 42
    myStream.Write(data, 0, data.Length)
    myWebResp = myWebReq.GetResponse
    sr = New StreamReader(myWebResp.GetResponseStream)
    ProgressBar1.Value = 66
    ProgressBar1.Value = 100
    If ProgressBar1.Value = 100 Then
    Label5.Text = Label5.Text + 1
    End If
    myStream.Close()
    Catch ex As Exception
    MsgBox("Error : Try Again Later!" & vbNewLine & "Check Your Username Or Password! & vbNewLine & Check The CheckBox Nuub.")
    End Try
    End Sub

    Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
    If Me.CheckBox1.Checked Then
    TextBox3.Text = "http://www.hackforums.net/member.php"
    Else
    TextBox3.Text = ""
    End If
    End Sub
    End Class


      Data/hora atual: 11/1/2024, 14:24