본문 바로가기
카테고리 없음

vs 설정

by 응가1414 2024. 10. 26.

매크로 사용 설정

https://visualstudioextensions.vlasovstudio.com/2014/02/13/visual-studio-2010-macros-stop-working-after-february-2014-windows-update/

C:\Program Files (x86)\Common Files\Microsoft Shared\VSA\9.0\VsaEnv\vsmsvr.exe.config

C:\Program Files (x86)\Common Files\Microsoft Shared\VSA\9.0\VsaEnv\vsaenv.exe.config

C:\Program Files (x86)\Microsoft Visual Studio9.0\Common7\IDE\devenv.exe.config

<configuration>...
    <runtime>
        ...
        <AllowDComReflection enabled="true"/>
        ...
    </runtime>
...
</configuration>
출처: https://iamskylover.tistory.com/84 [낚시하는 개발자:티스토리]

 

 

config.zip
0.00MB


 

 

설정

code Line 

Tools -> Option -> Text Editor -> C/C++ -> General 

Display :: Line numbers

 

기본 키 설정

View.NavigateBackward : Art + Left

이전 으로 이동

 

View.NavigateForward : Art + right

앞 으로 이동


Edit.UnCommentSelection : 컨트롤 쉬프트  /

Edit.CommentSelection : 컨트롤 /

커스텀 매크로

Macros.Samples.Accessibility.IncreaseTextEditorFontSize

Macros.Samples.Accessibility.DecreaseTextEditorFontSize

 

 

 

폰트

Gadugi

폰트

글자 색

 

Comment : 배경 녹색

identifier : 변수, 함수

Opperation : 연산자

 

 

https://blog.naver.com/wonjinho81/90096977536

 

Visual Studio 2005 2008 글꼴 및 색 설정

** Editor Settings ** 설정표시: 텍스트 편집기 글꼴: 돋움체 (8) 일반 텍스트(PlainText), 라임 검정...

blog.naver.com

 

 

Exported-2024-10-26.7z
0.03MB

 

Exported-2024-10-26.vssettings
0.21MB

 

 

 

메크로

알트 Q + Q, W, E 

 

MyMacros.zip
0.02MB

 

 

 

 

Option Strict Off
Option Explicit Off

Imports EnvDTE
Imports EnvDTE80
Imports EnvDTE90
Imports Microsoft.VisualBasic

Public Module WormDevelopTools
    Sub SelectBlock(ByVal nStartLine As Integer, ByVal nEndLine As Integer)
        DTE.ActiveDocument.Selection.GoToLine(nStartLine)
        DTE.ActiveDocument.Selection.StartOfLine(vsStartOfLineOptions.vsStartOfLineOptionsFirstColumn)
        DTE.ActiveDocument.Selection.LineDown(True, nEndLine - nStartLine + 1)
    End Sub

    Sub Signature()
        Dim sel As TextSelection = DTE.ActiveDocument.Selection

        ' Get current date and time
        Dim currentTime As String = Format(Date.Today, "yyyy-MM-dd") & " " & Format(TimeOfDay, "HH:mm:ss")

        ' Insert comment
        sel.Insert("/* Comment SeungChan Park " & currentTime & ". */")
    End Sub

    Sub InsertHorizontalLine()
        Dim lineString = "/* -------------------------------------- Comment -------------------------------------- */" + vbCrLf
        Dim sel As TextSelection = DTE.ActiveDocument().Selection()
        sel.Text() = lineString
    End Sub
End Module

 

 

IBM Rhapsody에서 글꼴을 변경하는 방법은 다음과 같습니다. 이 방법은 Rhapsody의 다양한 화면 요소(모델, 다이어그램 등)에 적용되는 글꼴을 수정할 수 있습니다.

IBM Rhapsody에서 글꼴 변경하는 방법

  1. Rhapsody 열기:
    • IBM Rhapsody를 실행합니다.
  2. Preferences 열기:
    • 상단 메뉴에서 Tools를 클릭한 후 Options 또는 Preferences를 선택합니다. 사용 중인 Rhapsody 버전에 따라 메뉴의 명칭이 약간 다를 수 있습니다.
  3. Fonts 설정 찾기:
    • 왼쪽 메뉴에서 General 또는 Appearance 항목을 찾아 클릭합니다.
    • 그 안에서 Fonts 또는 Diagram Fonts 같은 옵션을 찾아 선택합니다.
  4. 글꼴 변경:
    • 글꼴 설정 화면에서 변경하고 싶은 항목(예: 다이어그램 글꼴, 모델 글꼴 등)을 선택합니다.
    • 사용하고 싶은 글꼴, 스타일(예: Bold, Italic 등), 크기를 선택합니다.
  5. 적용 및 확인:
    • 글꼴 변경 후 OK 또는 Apply 버튼을 클릭하여 변경 사항을 적용합니다.
  6. Rhapsody 재시작 (필요시):
    • 일부 경우, 변경 사항이 즉시 반영되지 않을 수 있으므로 Rhapsody를 재시작하면 적용된 글꼴을 확인할 수 있습니다.

추가 팁

  • 다양한 글꼴 지원: Rhapsody는 시스템에 설치된 다양한 글꼴을 지원하므로 원하는 글꼴이 있다면 그것을 선택하면 됩니다.
  • 다이어그램 별 설정: 각 다이어그램에 따라 별도의 글꼴 설정이 필요할 수 있습니다. 각 다이어그램을 선택하고 오른쪽 클릭 메뉴에서 글꼴 설정을 조정할 수도 있습니다.