C# - Winforms webBrowser

Posted by user335932 on Stack Overflow See other posts from Stack Overflow or by user335932
Published on 2010-05-31T19:42:54Z Indexed on 2010/05/31 21:43 UTC
Read the original article Hit count: 454

Filed under:
|
|

How can i pass the URL property in web browser into an if statement....

private void button2_Click(object sender, EventArgs e)
    {
        var GameStats = comboBox1.Text;
        if (GameStats == "BattleField: Bad Company 2")
        {
            //Make URL equal to http://statsverse.com/
        }

    }

© Stack Overflow or respective owner

Related posts about c#

Related posts about winforms