본문 바로가기

Computer/MSWin

Excel SDI로 실행하기

MS Excel(엑셀)은 기본적으로 MDI(한 윈도우 안에 내부 윈도우로 어려 문서를 여는 방식) 인터페이스로 동작한다.
MS Word는 SDI(열린 문서 개수만큼 윈도우를 여는 방식) 인터페이스로 동작한다.
당연히 SDI 방식이 훨씬 편하다. (아님 개인적 취향인가? 아무튼.ㅎㅎ)

그래서 Excel을 SDI로 여는 방법이 없을까 해서 찾아봤더니,
역시 "찾는 곳에 길이 있다."라는 속담이 나를 안내해 주었다.

설정 방법은 아래와 같다.


1. 레지스트리 편집기 실행
strart > run > regedit

2. Excel.Sheet.8 편집
Left column
HKEY_CLASSES_ROOT/Excel.Sheet.8/shell/Open/commend:
Right column {adding (space)"%1"}
Double Click on (Default) and write - "C:\Program Files\Microsoft Office\Office12\EXCEL.EXE" /e "%1"
Right Click on Command ? choose "rename" and add something to the name  - for example 2 (commend2).

Left column
HKEY_CLASSES_ROOT/Excel.Sheet.8/shell/Open/ddeexec:
Right Click on the folder ddeexec and choose "rename" and add something to the name  - for example 2 (ddeexec2)

3. Excel.Sheet.12 편집
Excel.Sheet.8 편집과정과 동일하나 위치만 다른
Left column
HKEY_CLASSES_ROOT/Excel.Sheet.12/shell/Open/commend:
change same action Excel.Sheet.8




이 글은 MS Office 2010 패키지의 Excel에서 검증 되었다.
상위버전에서는 다를 수 있다.