Click here to Skip to main content
15,892,298 members
Please Sign up or sign in to vote.
1.50/5 (4 votes)
See more:
I want to enter automatically into my site.
Now i have id and password in it.
But I don't know how to start.
Help me!.

IE v6.0, v7.0, v8.0
Mozilla 3.6.15
Posted
Comments
Manfred Rudolf Bihy 2-May-11 10:12am    
Please give us more details of what you are trying to do. As it stands your question is far from being clear.
Sandeep Mewara 3-May-11 1:07am    
Not clear.

1 solution

While the question is vague, I am putting my effort. You can use ShellExecute or ShellExecuteEx to launch the browser and pass the URL of your website as an argument:

ShellExecute(GetDesktopWindow(), L"open", L"iexplore.exe", L"codeproject.com", NULL, SW_SHOWDEFAULT);
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900