Click here to Skip to main content
16,003,474 members
Please Sign up or sign in to vote.
1.11/5 (2 votes)
See more:
how to click the on link (SKIP AD buton) in the browser intrenet (web page)

the beginning looks like this


XML
how to click the link in the browser intrenet (web page)

the beginning looks like this

 <pre lang="c++"> #include <windows.h>
     
    void main()
    {
       ShellExecute(NULL, "open", "http://dreamincode.net",
                    NULL, NULL, SW_SHOWNORMAL);


the problem is
"skip_ad_button", "Skip Ad")
how to click on it with C++ ?

SKIP BUTON SOURCE
<img src="http://adf.ly/images/skip_ad/en.png" alt="Skip Ad" id="skip_ad_button" height="39">


what language is this written
C++
<pre lang="c++">#include <IE.au3>
$oIE = _IECreate ("http://adf.ly/2AbvJ")
_IEImgClick ($oIE, "skip_ad_button", "Skip Ad")
Posted
Comments
Sergey Alexandrovich Kryukov 28-Jan-12 18:54pm    
Why C#? You code looks like C or C++.

You are going to do with very unpleasant problem in a dirty way. If I were you, I would first explain the ultimate goal of all this activity in order to avoid starting a separate process at all (you won't get reliable control over it anyway, besides the user can have different Web browsers which behave in a different ways).

--SA

1 solution

C++ problem --open link

the answer to that problem is:

C#
Process.Start("your website");

IDK what ur on about on the rest of your quesions
 
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