Posts Tagged Microsoft

Excel multiple windows

A refreshing feature of Microsoft Word 2007 is the ability for each document to open in a separate application window. This allows viewing multiple documents on your screen(s) simultaneously for easy reference or edits. Unfortunately Microsoft Excel 2007 does not ship with this feature enabled, however here are two ways to make it work for you.

These instructions are based on Microsoft Office 2007, aka Version 12. Some differences will exist for other versions of Microsoft Office.

This simplest solution involves an advanced setting in Excel, but it didn’t for me. Give it a try first before continuing further:

Office button -> Excel Options -> Advanced.

Under General, check ‘Ignore other applications that use Dynamic Data Exchange’.

An alternative solution requires editing the registry and modifying the default Excel file types and is described below.

Firstly you may need to update the permissions of that registry tree so that Administrators have full control over Excel’s file types.

Open the registry, and go to:

HKEY_CLASSES_ROOT\Excel.Sheet.12

Right click the tree and adjust the permissions to grant Full Control to Administrators

Then after that in explorer go to:

Options -> File Types -> XLSX -> Advanced

Append "%1" to the command and Uncheck DDE.

Unfortunately this is where I discovered that with a single file open, the Taskbar caption always begins with “Microsoft Excel – ” prepending the filename, and this makes it difficult to tell apart the applications in the taskbar when you can only see the first word or two.

A plausible workaround to the Taskbar caption is to create a custom add-in for Excel to load on startup that will rewrite the caption (albeit in this example the name is NOT updated if the file is closed and a new file opened).

Tags: , , ,

Excel 2007 opening problem

Symptom: upon double clicking an Excel document to open, Excel starts but does not open the document immediately. If you minimize the window then it will re-appear and then open the document.

Likely cause: bad addins, in my case it was PDFMaker.xla

Delete the addin from the following locations:

  • C:\Documents and Settings\USERID\Application Data\Microsoft\Excel\XLSTART
  • C:\Program Files\Microsoft Office\Office12\XLSTART

Result: Excel opens document immediately.

Tags: , , , ,

Windows Updates Hate

After “updating” to IE7, shared drives are treated as internet zone – prompting you to confirm every single time you try to copy a file.

This knowledge-base article describes the problem, however the “fix” does not work.

This registry hack appeared to work:

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings\ZoneMap\Domains\YOUR_SERVER]
"file"=dword:00000001

Then obviously reboot after update the registry, because Winblows can’t seem to get anything done without a reboot.

Tags: , , ,

Problems adding SP3 to WindowsXP

I was unable to upgrade WindowsXP to SP3, given an access denied error. It was not hard to find a relevant kb article from Microsoft:
kb949377
: When you try to install Windows XP Service Pack, you receive the error message “Access is denied” or “Service Pack installation did not complete”

The only given solution that worked was to reset the registry and the file permissions (as given in the kb article):

cd /d "%ProgramFiles%\Windows Resource Kits\Tools"
subinacl /subkeyreg HKEY_LOCAL_MACHINE /grant=administrators=f /grant=system=f
subinacl /subkeyreg HKEY_CURRENT_USER /grant=administrators=f /grant=system=f
subinacl /subkeyreg HKEY_CLASSES_ROOT /grant=administrators=f /grant=system=f
subinacl /subdirectories %SystemDrive% /grant=administrators=f /grant=system=f
subinacl /subdirectories %windir%\*.* /grant=administrators=f /grant=system=f
secedit /configure /cfg %windir%\repair\secsetup.inf /db secsetup.sdb /verbose

Tags: , ,

SP2 cripples Windows XP

SP2 brought with it a rather annoying tweak to the TCP/IP stack: a 10-connection-per-second limit.

I can’t remember exactly what alerted me to this problem, it may have been when a link-checker application stalled, or could have been the multi-threaded ftp client I was using.

Either way, the effect of “hitting the wall” was damned annoying and I need to find a way around it. Thankfully I found an article that offered a few solutions.

Tags: , , ,