The application I am trying to make will be a database program that needs to get on a website in order to work. I am looking for coding that when executed would open the internet, type in a URL, click on a button on that page, then type in a user name and password. I want this all to be done autonomously with just coding. I have a way to open the internet from a program but would like help with the rest. I'm not super experienced with vb.

How I open the internet:

Dim p As New System.Diagnostics.Process

p.StartInfo.FileName = "iexplore.exe"

p.Start()

Any help on the rest? Thanks so much