VB.NET Tutorial 41 - Website Login (Visual Basic 2008/2010)

preview_player
Показать описание

For more information, check out the website:
Рекомендации по теме
Комментарии
Автор

I love this channel!
So much useful stuff demonstrated in front of my eyes.
And not narrated by someone with an intimidating accent that makes you feel you are a noob. A scouse!!! Love it!!

sirlew
Автор

Thank you SOOOO much! I just started using VB 2010, I'm so used to VB.net 2006, I couldn't figure out why my form wasn't filling or submitting, and hours of trial and error solved nothing. Really, thanks for helping me through the frustration :) subscribed!

ej
Автор

I've just discovered your tutorials and think they are excellent.This one is awesome.
Thanks a lot.

nickdvszzzzz
Автор

this tutorial gave new hope to my capstone project. thank you very much.

AllobanG
Автор

WOW! This really is amazing. Never thought it to be this simple

markdeantube
Автор

You are really very instructive indeed, explicit explanations.

I'm having a problem:

when I tried to put the codes within an event, it gives "The specified cast is not valid" error. I'm trying to click upload button of youtube, then push a "sendkeys" filename and Enter. So, I put the codes in a button, when I click it manually, it works fine, but when I tried it to be in button.performclick in an event, the same error above occurs.


ElyBog
Автор

@MartialKings What you mean?
like just have a login button?
yeah double click on the form load
and enter the navigate code

LSANTUTORIALS
Автор

If there was a "Love" button, i'd press that!!

ShayAxelod
Автор


SendKeys.Send(" ")

I think this is just a work around. But it works :)

daviddavve
Автор

Nice Tutorial!
Is it possible to make one button for navigate & login?
I tried out, but it doesnt worked for me...

MartialKings
Автор

@TeachMeComputer

I am also trying to get this to work, and cant find it in any of your videos.
Could you please explain how to login from your application when the button name is not specified in the source of the site?
Ty in advance!

SGToverkillCOD
Автор

Hi is there a way, once you login the way you showed, to gather datas from the page? E.G. the contact list... I am trying to make a VB messenger but can't figure out the contact list part.

keropiboy
Автор

I have a problem, I'm using this method on my program but the thing is the webbrowser is already loaded and when I type user and pass in the textbox's the textbox's in the browser arn't focused so the login button doesn't press..? I have a java set focus but when you click a textbox in the program the webbrowser unfocuses.. how can I do this?

LMSNETWORKLTD
Автор

Very helpful. Makes me wanna try. The video is clear

markdeantube
Автор

awsome lessons dude ! i really love them all ... but i have a little request if i can say it like that . i need to make a application that enters username and password to a windows applications. i`m lazy and i forget my passwords soo i need to automate that . is there any way to do it ? is any logic in what i`m trying to explain ? thanks in advance ! regards .

wdpwr
Автор

Your video is very very instructive !

nicocodanto
Автор

You can use this

Public Class Form1

Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
If TextBox1.Text = "Password" Then
Form2.Show()
Else : MessageBox.Show("Wrong Password!, Pls Enter a Correct Pass")

End If
End Sub
End Class

Hope it helps

Hexidecimalify
Автор

Hey i have a question, how can i make it so if you click something in a web browser(vb) it will execute an app or open a new form depending on if the username and pass is correct?

LearnPhilFoundation
Автор

hey thats good, i made a lil login app using this tutorial and i would like to ask if there is any way to block certain webpage elements like images, ads and other unnecessary link displays and to display just the desired login box? thanks

roshanrbb
Автор

do you know how to change the checkstate of a checkbox?

CoLinearProductions