UML Sequence Diagram in Visio 2007





Posted by 노을지기
이메일이나 웹사이트 입력시 자동으로 하이퍼링크가 연결된다.
이것을 제거하기 위해서는 설정에서 체크를 안하면 되지만, 자주 이용하기때문에 그냥 기본으로..

가끔 한 페이지 정도 하이퍼링크를 제거하고 싶을 때가 있다.
몇개 안될경우 하나씩 제거하면 되지만, 여러개일때 블럭지정시 어렵다.

구글 검색 결과 다음과 같다.
http://support.microsoft.com/kb/976085/ko#1

이 방법 중 두번째가 편한듯.. 한 시트 전제 제거시...

  1. 제거할 하이퍼링크가 있는 시트를 선택합니다.
  2. Alt + F11 키를 눌러 “VBA 편집기”를 엽니다.
  3. Ctrl + g 키를 눌러 “직접 실행창”을 엽니다.
  4. 아래와 같이 입력하거나 아래 구문을 복사해 직접 실행창에 붙여 넣은 다음 Enter를 누릅니다.
    ActiveSheet.Hyperlinks.Delete

    00_04


  5. Alt + q 키를 눌러 VBA편집기를 닫고 엑셀로 돌아갑니다


Step by Step: Excel 문서 내에서 하이퍼링크 한꺼번에 삭제하기


Excel 기본 기능인 선택하여 붙여 넣기를 이용하여 하이퍼링크를 한꺼번에 제거할 수 있습니다.
  1. 빈 셀에 숫자 1을 입력합니다.
  2. 셀을 마우스 오른쪽 단추로 클릭한 다음 바로 가기 메뉴에서 [복사]를 클릭합니다.


    바로 가기 키(Ctrl + C)를 눌러 복사하거나 아래의 클립보드에서 [복사]를 클릭할 수도 있습니다.


  3. Ctrl 키를 누르고 하이퍼링크를 해제할 범위를 선택합니다.

    하이퍼링크 대상으로 이동하지 않고 하이퍼링크가 포함된 셀을 선택하려면 셀을 클릭한 다음 마우스 단추를 누르고 있다 포인터가 십자 모양이 되면 마우스 단추를 놓습니다.


  4. 아래의 클립보드 그룹에서 [붙여넣기], [선택하여 붙여넣기]를 차례대로 클릭합니다.
    00_01



    마우스 오른쪽 단추를 클릭한 다음 바로 가기 메뉴에서 [선택하여 붙여넣기(S)...]를 선택할 수 있습니다.


  5. 선택하여 붙여넣기 화면에서 연산 아래의 [곱하기]를 선택한 다음 [확인]을 클릭합니다.
    00_02


  6. 스타일 그룹에서 [셀 스타일]을 클릭합니다.
  7. 좋음, 나쁨 및 보통 아래에서 [표준]을 선택합니다.
    00_03



    5번까지 선택하여 붙여넣기를 이용해 하이퍼링크가 일괄 제거됩니다. 6번과 7번 과정은 하이퍼링크 스타일을 표준 스타일로 변경하는 과정이므로, 이를 생략하더라도 이미 하이퍼링크는 제거된 것입니다.


    선택하여 붙여넣기를 이용해 하이퍼링크는 제거하는 방법은 워크시트 셀에 링크된 하이퍼링크만을 제거합니다. 도형이나 기타 개체에 연결된 하이퍼링크를 한꺼번에 제거하려면 VBA를 이용합니다.

방법2: VBA를 이용해 활성 시트의 하이퍼링크 일괄 제거하는 방법


이 방법은 Excel을 처음 다루는 초보자에게는 어려울 수 있습니다. VBA에 대한 기본적인 내용을 알고 계셔야 적용할 수 있습니다.
  1. 제거할 하이퍼링크가 있는 시트를 선택합니다.
  2. Alt + F11 키를 눌러 “VBA 편집기”를 엽니다.
  3. Ctrl + g 키를 눌러 “직접 실행창”을 엽니다.
  4. 아래와 같이 입력하거나 아래 구문을 복사해 직접 실행창에 붙여 넣은 다음 Enter를 누릅니다.
    ActiveSheet.Hyperlinks.Delete

    00_04


  5. Alt + q 키를 눌러 VBA편집기를 닫고 엑셀로 돌아갑니다.

방법3: VBA 프로시저를 작성해 통합문서의 하이퍼링크 일괄 제거하는 방법

  1. Alt + F11 키를 눌러 VBA 편집기를 엽니다.
  2. Alt + i + m 키를 누르거나 [삽입], [모듈]을 차례대로 클릭하여 모듈을 추가합니다.
  3. 아래의 코드를 입력하거나 복사해 붙여넣습니다.

    Sub dhDeleteAllHyperLinks()
    Dim s As Object
    For Each s In Sheet
    s.Hyperlinks.Delete
    Next s
    End Sub
  4. F5 키를 누르거나, [실행], [Sub/사용자 정의 폼 실행 F5]을 차례대로 클릭해 dhDeleteAllHyperLinks 프로시저를 실행합니다.
    00_05


Posted by 노을지기
출처: http://support.microsoft.com/kb/214342


Error message in Excel: "Unable to save external link values"

This article was previously published under Q214342

SYMPTOMS

When you try to save a workbook that contains either a link to a large range of cells in another workbook (approximately 16,000 cells) or too many cells that are linked to a cell in another workbook, you receive the following error message in Microsoft Excel 2000:
Not enough memory.
Then, you receive the following error message:
Unable to save external link values.
In Microsoft Office Excel 2003 and in Microsoft Excel 2002, you receive the following error message:
Excel cannot complete this task with available resources. Choose less data or close other applications.
Then, you receive the following error message:
Unable to save external link values.

CAUSE

This problem occurs when you save a workbook that contains a link to a range of cells in a different workbook, and the range is more than 16,000 cells. This problem occurs because Microsoft Excel 2000 cannot save a workbook that contains a link to an external range of more than 16,000 cells.

WORKAROUND

To work around this problem, link to multiple smaller ranges instead of one large range.

If you do not need to save a copy of the external link values, you can disable the option to save a copy of the external link values by following these steps:
  1. Switch to the workbook that contains the link formulas.
  2. On the Tools menu, click Options.
  3. Click the Calculation tab in the Options dialog box.
  4. Under Workbook options, click to clear the Save external link values check box, and click OK.
To work around this problem, you can also move the sheet or the sheets that contain the external data range that you are referencing in the VLOOKUP into the same workbook that contains the VLOOKUP formulas.
Posted by 노을지기
출처: http://www.groovypost.com/howto/microsoft/outlook/disable-microsoft-outlook-2007-and-2003-email-auto-complete/

아웃룩에서 이메일 보내는 사람 주소를 자동으로 완성하는 기능이 있다.

이것을 지정하는 곳은
[Tools] - [Options] - [Preferences Tab's E-mail Options..] - [Advanced E-mail Options..] 이다.

이곳에서 선택
[Suggest names while completing To, Cc, and Bcc fields]

1. On the Tools menu, click Options.

tools_options

 

2. On the Preferences tab, click E-mail Options,

image

 

and then click Advanced E-mail Options.

Disable Auto Complete

 

3. Clear the Suggest names while completing To, Cc, and Bcc fields check box.

Disable Auto Complete

 


Posted by 노을지기

Outlook 설정 파일을 백업하는 방법

다른 컴퓨터에 복제하거나 컴퓨터에 복원하려는 도구 모음 설정 및 즐겨찾기와 같은 설정을 사용자 지정한 경우 다음 파일을 백업에 포함하려고 할 수 있습니다.
  • Outcmd.dat: 이 파일은 도구 모음 및 메뉴 설정이 저장되어 있습니다.
  • ProfileName.fav: Outlook 표시줄에 대한 설정이 포함되어 있는 즐겨찾기 파일입니다.
  • ProfileName.nk2: 이 파일은 자동 완성을 위한 애칭을 저장합니다.
  • 서명 파일: 개별 서명에는 자체 파일이 있고 만들 때 사용한 서명과 같은 이름을 사용합니다. 예를 들어, MySig라는 서명을 만든 경우 다음 파일이 Signatures 폴더에 만들어집니다.
    • MySig.htm: 이 파일은 HTML 자동 서명을 저장합니다.
    • MySig.rtf: Microsoft Outlook RTF(서식 있는 텍스트) 메시지 맺음말이 저장됩니다.
    • MySig.txt: 일반 텍스트 형식의 메시지 맺음말이 저장됩니다.
    서명 파일의 위치는 실행 중인 Windows 버전에 따라 다릅니다. 다음 목록에서 해당 위치를 찾으십시오.
    • Windows Vista: Drive\users\Username\appdata, 여기서 Drive는 Outlook이 설치되어 있는 드라이브를 나타내고 Username은 Outlook이 설치된 사용자 이름을 나타냅니다.
    • Windows XP 또는 Windows 2000: Drive\Documents and Settings\Username\Local Settings\Application Data\Microsoft\Outlook, 여기서 Drive는 Outlook이 설치된 드라이브를 나타내고 Username은 Outlook이 설치된 사용자 이름을 나타냅니다.
    • Windows 98 또는 Windows Me: Drive\Windows\Local Settings\Application Data, 여기서 Drive는 Outlook이 설치된 드라이브를 나타냅니다.
참고 Microsoft Word를 전자 메일 편집기로 사용하는 경우 서명은 Normal.dot 파일에 상용구 항목으로 저장됩니다. 이 파일도 백업해야 합니다.

How to back up Outlook settings files

If you have customized settings, such as toolbar settings and Favorites, that you want to replicate on another computer or restore to your computer, you might want to include the following files in your backup:
  • Outcmd.dat: This file stores toolbar and menu settings.
  • ProfileName.fav: This is your Favorites file, which includes the settings for the Outlook bar (only applies to Outlook 2002 and older versions).
  • ProfileName.xml: This file stores the Navigation Pane preferences (only applies to Outlook 2003 and newer versions).
  • ProfileName.nk2: This file stores the Nicknames for AutoComplete.
  • Signature files: Each signature has its own file and uses the same name as the signature that you used when you created it. For example, if you create a signature named MySig, the following files are created in the Signatures folder:
    • MySig.htm: This file stores the HTML Auto signature.
    • MySig.rtf: This file stores the Microsoft Outlook Rich Text Format (RTF) Auto signature.
    • MySig.txt: This file stores the plain text format Auto signature.
    The location of the signature files depends on the version of Windows that you are running. Use this list to find the appropriate location:
    • Windows Vista or Windows 7: Drive\users\Username\appdata, where Drive represents the drive that Outlook was installed to and Username represents the user name that Outlook was installed under.
    • Windows XP or Windows 2000: Drive\Documents and Settings\Username\Local Settings\Application Data\Microsoft\Outlook, where Drive represents the drive that Outlook was installed to and Username represents the user name that Outlook was installed under.
    • Windows 98 or Windows Me: Drive\Windows\Local Settings\Application Data, where Drive represents the drive that Outlook was installed to.
Note If you use Microsoft Word as your e-mail editor, signatures are stored in the Normal.dot file as AutoText entries. You should back up this file also.
Posted by 노을지기
이전버튼 1 2 3 4 5 6 이전버튼