Jump to content

Opening website on application load


cohen
 Share

Recommended Posts

Im not sure how to do this, which is why im asking for help here.

I know the code in C#, which is

private void Form1_Load(object sender, EventArgs e)
        {
            Process.Start("www.procrackers.net/forum");
        }

I just need help doing something like this in AutoIt, thanks to whoever can do this

Link to comment
Share on other sites

example..

#include <IE.au3>
$site="http://www.google.co.uk/"

while 1
if ProcessExists("notepad.exe")  then
_IECreate ($site ,0,1)
Exit
endif
wend

waits for notepad.exe to exist then opens page

Im making this for a wow program im making. Would I change notepad.exe to wow.exe or would I have to use the full directory link?("c:/Program Files/World of Warcraft/wow.exe")

Also, i was meaning when this application starts, to open up a website.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...