ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • Visual Studio Macro
    dev/tool 2009. 12. 16. 11:18

    원하는 기능을 매크로로 만들어서 단축키 등록해놓으면 우왕굿~

    1. 게임코디 팁에서 펌
    http://www.gamecodi.com/board/zboard.php?id=GAMECODI_Tip&no=224
    편집기 선택영역 구글로 검색

    Sub GoogleSearch()
      Dim strUrl As String
      Dim selection As TextSelection = DTE.ActiveDocument.Selection()

      ' If user didn't select text,
      ' show assert message box
      If selection.Text <> "" Then
       ' Google Search!
       strUrl = "www.google.co.kr/search?q=" + selection.Text
       ' Navigate it!
       DTE.ExecuteCommand("View.WebBrowser", strUrl)
      Else
       MsgBox("Select Text to find")
      End If
     End Sub

    2. 듀얼이상 모니터에서 VS 창 최대화하기
    비스타 부턴가 span 모드가 안되서 마우스로 크기 조절하다 매크로로 등록
    위치 잡을때 - 값은 테두리까지 완전히 안보이게 하기위해. 환경에 따라 수동으로 체크하여 수정하면 됨
    아래 설정은 1280 * 1024 19" 듀얼 모니터, Windows 7, 테스크바 아이콘 작게 했을때 최적.

     Sub FitWindow()
      If DTE.MainWindow.WindowState = vsWindowState.vsWindowStateMaximize Then
       DTE.MainWindow.WindowState = vsWindowState.vsWindowStateNormal
      End If

      DTE.MainWindow.Left = -8
      DTE.MainWindow.Top = -30
      DTE.MainWindow.Width = 2576
      DTE.MainWindow.Height = 1032
     End Sub

Designed by Tistory.