CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Opera Tabs

  1. #1
    Join Date
    Mar 2011
    Posts
    3

    Opera Tabs

    Hey, how would I open a tab in opera using C#?

  2. #2
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,283

    Re: Opera Tabs

    I would try something like this :

    Code:
    System.Diagnostics.Process process = new System.Diagnostics.Process();
    process.StartInfo.FileName = "http://www.whateveraddress.com";
    process.Start();
    Some browsers automatically opens a new tab with this. Maybe it works for you

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured