Results 1 to 6 of 6

Thread: Unable to open excel 2010 files in seperate windows

  1. #1
    Join Date
    Dec 2009
    Posts
    73

    Unable to open excel 2010 files in seperate windows

    I am using the dell inspiron laptop running with the windows 7 OS. i have started using the Ms excel 2010 and i wanted to open different excel application but i am Unable to open excel 2010 files in seperate windows Please help me out in this matter. I would really appreciate your help thanks in advance.

  2. #2
    Join Date
    Apr 2008
    Posts
    4,642

    Re: Unable to open excel 2010 files in seperate windows

    I haven't used the office 2010 yet but i think that since the excel 2010 evolved from the Excel 2007 so most of the properties or functionalities of excel 2007 would be similar to excel 2010. So i think that you simply need to check the checkbox "Show all windows in the Taskbar" and apply these settings this will fix your problem for sure.

  3. #3
    Join Date
    Dec 2009
    Posts
    73

    Re: Unable to open excel 2010 files in seperate windows

    First of all i would like to thank you Eric B for replying me also let me tell you that i have used the Excel 2007 prior to Excel 2010 so i was aware of the setting which you specified in your problem. It appears that this doesn't work in Office 2010 beta. Or maybe there's another way to fix it please help me

  4. #4
    Join Date
    May 2008
    Posts
    3,316

    Re: Unable to open excel 2010 files in seperate windows

    You can open the two different file in two different excel instances by simply starting two instances of excel 2010. So firstly click on the start menu and open the excel 2010 application and then open one of the desired file in it. Now simply try to open another instance of excel 2010 for the other file similarly.

  5. #5
    Join Date
    Jan 2008
    Posts
    3,755

    Re: Unable to open excel 2010 files in seperate windows

    If you are somewhat familiar about the VBA programming then you can try to use your skills in achieving this objective you simply need to write the VBA code which i have mentioned below in the VBA Editor and search for the PERSONAL.XLSB workbook.

    Now Insert a new class module and name it as "clsApplicationEvents" with the following code:
    Code:
    Public WithEvents App As Application
    
    Private Sub App_WorkbookOpen(ByVal b1 As Workbook)
       
        If (Val(.Version) > 12) And (.Build = 4514) Then
                .ShowWindowsInTaskbar = False
                .ShowWindowsInTaskbar = True
            End If
        End With 
    End Sub
    
    <br/>
    
    Now open the  PERSONAL.XLSB workbook and insert this code
    Dim AppEvents as New clsApplicationEvents
    
    Private Sub Workbook_Open()
    
        Set AppEvents.App = Application
    
    End Sub
    Last edited by Sam.D; 19-02-2010 at 03:40 AM.

  6. #6
    Join Date
    May 2008
    Posts
    4,831

    Re: Unable to open excel 2010 files in seperate windows

    To open different files in two different excel instances you will have to initialize two instances of the excel 2010 application individually for both the files. Start Excel from the Start menu once to open one instance then click it again to open a second excel instance. You can now use these two instances to open the files that you want to see.

Similar Threads

  1. Replies: 12
    Last Post: 30-05-2012, 04:04 PM
  2. Unable to open encrypted excel files on new computer
    By fAROK in forum Windows Software
    Replies: 4
    Last Post: 09-05-2011, 10:13 AM
  3. Unable to open a Sample Excel file using Office 2010
    By Caelaan in forum Windows Software
    Replies: 5
    Last Post: 10-03-2010, 04:14 PM
  4. Replies: 3
    Last Post: 09-06-2009, 06:23 PM
  5. cannot open excel files from windows explorer
    By Chucky in forum Windows XP Support
    Replies: 2
    Last Post: 30-05-2008, 03:38 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,714,033,619.63279 seconds with 17 queries