📨 Have you signed up to the Forum's new Email Digest yet? Get a selection of trending threads sent straight to your inbox daily, weekly or monthly!

Good ways to split internet explorer screen?

Options
tomstickland
tomstickland Posts: 19,538 Forumite
10,000 Posts Combo Breaker
I'm looking for an effective way to display two web sites side by side on the screen.
I had a quick play with framesets but this doesn't allow proper browsing in the two windows, or the use of favourites etc.
My next thought is to use some higher level programming to control the window location of two ie windows.
What's the best approach for this? Is it worth investigating the .net framework and C# or whatever?

Other options are to use a browser like Opera or Firefox. Do any of those offer split screen browsing?
What about an add on for ie7? I've looked around and not found too much.
Happy chappy
«1

Comments

  • CHR15
    CHR15 Posts: 5,193 Forumite
    Part of the Furniture 1,000 Posts Combo Breaker
    Can you not just open two IE windows, right click on the taskbar and select Tile Windows Vertically? or am I looking too simply at it?
  • ianian99
    ianian99 Posts: 3,095 Forumite
    1,000 Posts Combo Breaker
  • tomstickland
    tomstickland Posts: 19,538 Forumite
    10,000 Posts Combo Breaker
    CHR15 wrote: »
    Can you not just open two IE windows, right click on the taskbar and select Tile Windows Vertically? or am I looking too simply at it?
    Well, yes you can, but I wanted something that forced them to stay where I wanted them.
    Happy chappy
  • Chippy_Minton
    Chippy_Minton Posts: 3,339 Forumite
    If your request is as simple as opening two IE windows and setting their sizes and positions on the screen, this can be accomplished automatically using a script. Something like:
    'IE2Windows.vbs
    
    option explicit
    dim ie1, ie2
    
    set ie1 = WScript.CreateObject("InternetExplorer.Application")
    ie1.height =  500
    ie1.width = 1200
    ie1.left = 0
    ie1.top = 0
    ie1.menubar = 0
    'ie1.toolbar = 0
    'ie1.statusBar = 0
    'ie1.resizable = 0 
    ie1.navigate "www.google.co.uk"
    ie1.visible = true
    
    set ie2 = WScript.CreateObject("InternetExplorer.Application")
    ie2.height = 500
    ie2.width = 1200
    ie2.left = 0
    ie2.top = 500
    ie2.menubar = 0
    'ie2.toolbar = 0
    'ie2.statusBar = 0
    'ie2.resizable = 0 
    ie2.navigate "www.google.co.uk"
    ie2.visible = true
    
  • Millionaire
    Millionaire Posts: 3,748 Forumite
    1,000 Posts Combo Breaker
    Why not open up I.E. Resize and postion it where you want then do this with the other one as well. so for example 2 screens side by side. then close both down.

    then when you open i.e the screens will open up like how you set them.
  • tomstickland
    tomstickland Posts: 19,538 Forumite
    10,000 Posts Combo Breaker
    I want something more rigid than that. Something software controlled. I've just installed VB.net and I'm going to see what that can do.
    Happy chappy
  • BeerBelly
    BeerBelly Posts: 325 Forumite
    Part of the Furniture 100 Posts Combo Breaker
    Sorry, if its too simplistic for your needs, but I do this:

    - Open 2 IE Windows (or more)
    - Hold Ctrl
    - Click on both icon windows at the bottome on the task bar
    - right-click
    - Choose Title Vertically

    Works with any app (good for multple Explorer Windows as well.

    I use IE for Internet so the Windows appears as tabs anyway.

    Good Luck
  • Chippy_Minton
    Chippy_Minton Posts: 3,339 Forumite
    I want something more rigid than that. Something software controlled. I've just installed VB.net and I'm going to see what that can do.
    In that case you could use two WebBrowser controls on a Windows form - http://msdn2.microsoft.com/en-us/library/2te2y1x6.aspx
  • JonnyThunder
    JonnyThunder Posts: 234 Forumite
    100 Posts
    Go the distance! I use a dual head graphics card. Two identical TFT monitors. It's awesome for development and quick browsing!
    Throwing acid is bad.... in some peoples eyes...
  • Stephen_Leak
    Stephen_Leak Posts: 8,762 Forumite
    1,000 Posts Combo Breaker
    My boss has a dual monitor set up. It just looks so good, and I am bright green with envy!
    The acquisition of wealth is no longer the driving force in my life. :)
This discussion has been closed.
Meet your Ambassadors

🚀 Getting Started

Hi new member!

Our Getting Started Guide will help you get the most out of the Forum

Categories

  • All Categories
  • 351.1K Banking & Borrowing
  • 253.1K Reduce Debt & Boost Income
  • 453.6K Spending & Discounts
  • 244.1K Work, Benefits & Business
  • 599K Mortgages, Homes & Bills
  • 177K Life & Family
  • 257.4K Travel & Transport
  • 1.5M Hobbies & Leisure
  • 16.1K Discuss & Feedback
  • 37.6K Read-Only Boards

Is this how you want to be seen?

We see you are using a default avatar. It takes only a few seconds to pick a picture.