macro
-
Visual Studio Macrodev/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 i..