검색결과 리스트
Visual Studio에 해당되는 글 13건
- 2014.11.15 [Visual Studio] Visual Studio 2013 Community Edition
- 2013.07.03 [Visual Studio] Remote Debugger
- 2013.05.28 [Visual Studio] Advanced Debugging in Visual Studio
- 2013.05.01 [VC++] Visual Studio Predefine Macro
- 2013.04.17 [Visual Studio] Visual Studio 설치 관리자
- 2013.03.08 [Visual Stdio 2010] 공백 표시
- 2013.01.23 [.Net] NuGet
- 2012.12.18 [Visual Studio 2010] Visual Studio Automatically using
- 2012.12.13 [Visual Stdio 2010] Developing Visual Studio Extensions
- 2012.05.16 [Visual Studio] Add-In 만들기
- 2012.04.11 [Visual Studio 2005] 매크로 환경변수
- 2012.03.26 [C#] vshosting.exe 가 뭘까요?
- 2011.03.25 Visual Studio 2010에서는 더이상 Windows Mobile 개발을 지원하지 않습니다.
글
'IDE/Tool > Visual Studio' 카테고리의 다른 글
[Visual Studio] Managing Packages Using the Package Manager Console (0) | 2015.01.30 |
---|---|
[Visual Studio] Remote Debugger (0) | 2013.07.03 |
[Visual Studio] Advanced Debugging in Visual Studio (0) | 2013.05.28 |
[Visual Studio] Visual Studio 설치 관리자 (0) | 2013.04.17 |
[Visual Stdio 2010] 공백 표시 (0) | 2013.03.08 |
트랙백
댓글
글
'IDE/Tool > Visual Studio' 카테고리의 다른 글
[Visual Studio] Managing Packages Using the Package Manager Console (0) | 2015.01.30 |
---|---|
[Visual Studio] Visual Studio 2013 Community Edition (0) | 2014.11.15 |
[Visual Studio] Advanced Debugging in Visual Studio (0) | 2013.05.28 |
[Visual Studio] Visual Studio 설치 관리자 (0) | 2013.04.17 |
[Visual Stdio 2010] 공백 표시 (0) | 2013.03.08 |
트랙백
댓글
글
출처 : http://www.codeproject.com/Articles/309781/Advanced-Debugging-in-Visual-Studio
Download AdvancedDebugging.zip - 28.2 KB (Visual Studio 2010 Solution)
'IDE/Tool > Visual Studio' 카테고리의 다른 글
[Visual Studio] Visual Studio 2013 Community Edition (0) | 2014.11.15 |
---|---|
[Visual Studio] Remote Debugger (0) | 2013.07.03 |
[Visual Studio] Visual Studio 설치 관리자 (0) | 2013.04.17 |
[Visual Stdio 2010] 공백 표시 (0) | 2013.03.08 |
[Visual Studio] Visual Studio Automation Object Model (0) | 2013.02.01 |
트랙백
댓글
글
'C/C++ > VC++ / MFC' 카테고리의 다른 글
[COM] Com Event Handling (0) | 2013.05.24 |
---|---|
[VC++] IOCP 프로그래밍 (1) | 2013.05.21 |
[VC++] Tray Icon Animation (0) | 2013.04.26 |
[VC++] Design Specifications and Guidelines - Visual Design (0) | 2013.03.14 |
[VC++] 모듈 정의 파일(.def)을 이용해서 EXPORTS 시키기 (0) | 2013.03.08 |
트랙백
댓글
글
Visual Studio 설치관리자 배포 : http://msdn.microsoft.com/ko-kr/library/vstudio/2kt85ked(v=vs.100).aspx
사용자 지정 작업 만들기 : http://msdn.microsoft.com/ko-kr/library/vstudio/d9k65z2d(v=vs.100).aspx
참고 : http://styletigger.tistory.com/21
추가 : http://msdn.microsoft.com/ko-kr/library/vstudio/d9k65z2d(v=vs.100).aspx
C++로 만드는 방법 : http://www.codeproject.com/Articles/335516/Custom-Action-in-Visual-Studio-setup-projects
http://msdn.microsoft.com/en-us/library/windows/desktop/aa370134(v=vs.85).aspx
UINT __stdcall MyCustomAction(MSIHANDLE hInstall)
{
TCHAR* szValueBuf = NULL;
DWORD cchValueBuf = 0;
UINT uiStat = MsiGetProperty(hInstall, TEXT("MyProperty"), TEXT(""), &cchValueBuf);
//cchValueBuf now contains the size of the property's string, without null termination
if (ERROR_MORE_DATA == uiStat)
{
++cchValueBuf; // add 1 for null termination
szValueBuf = new TCHAR[cchValueBuf];
if (szValueBuf)
{
uiStat = MsiGetProperty(hInstall, TEXT("MyProperty"), szValueBuf, &cchValueBuf);
}
}
if (ERROR_SUCCESS != uiStat)
{
if (szValueBuf != NULL)
delete[] szValueBuf;
return ERROR_INSTALL_FAILURE;
}// custom action uses MyProperty
// ...delete[] szValueBuf;
return ERROR_SUCCESS;
}
'IDE/Tool > Visual Studio' 카테고리의 다른 글
[Visual Studio] Remote Debugger (0) | 2013.07.03 |
---|---|
[Visual Studio] Advanced Debugging in Visual Studio (0) | 2013.05.28 |
[Visual Stdio 2010] 공백 표시 (0) | 2013.03.08 |
[Visual Studio] Visual Studio Automation Object Model (0) | 2013.02.01 |
[Visual Studio 2010] Visual Studio Automatically using (0) | 2012.12.18 |
트랙백
댓글
글
'IDE/Tool > Visual Studio' 카테고리의 다른 글
[Visual Studio] Advanced Debugging in Visual Studio (0) | 2013.05.28 |
---|---|
[Visual Studio] Visual Studio 설치 관리자 (0) | 2013.04.17 |
[Visual Studio] Visual Studio Automation Object Model (0) | 2013.02.01 |
[Visual Studio 2010] Visual Studio Automatically using (0) | 2012.12.18 |
[Visual Stdio 2010] Developing Visual Studio Extensions (0) | 2012.12.13 |
트랙백
댓글
글
링크 : http://debop.blogspot.kr/2012/03/nuget.html
이클립스 보면은 마켓이 있어서 다양한 패키지들을 다운로드 받는다.
이거랑 비슷한게 NuGet이라고 Visual Studio 2010 부터 지원한다.
'.Net > .Net' 카테고리의 다른 글
[.Net] EXE를 포함한 외부 DLL을 같이 배포하기 (0) | 2013.02.19 |
---|---|
[.Net] Castle DynamicProxy Tutorial (0) | 2013.01.23 |
[.Net] AOP 프로그래밍 (0) | 2013.01.23 |
[.Net] CodeDomProvider (0) | 2013.01.15 |
[.Net] Aspect Oriented Programming With .Net (0) | 2013.01.14 |
트랙백
댓글
글
[Visual Studio 2010] Visual Studio Automatically using
설정
프로그램을 개발하다 보면은 툴에 익숙지 않아서 은근히 시간을 잡아 먹는 경우가 있다.
VC++을 하다가 Java를 할때 답답했던 첫번째는 많은 import를 어떻게 해야 하나 였다.
물론 이클립스에서 CTRL+SHIFT+O라는 환상의 단축키가 있다.
이런 비슷한게 C#에서 using문인데 찾아보니 위에것 정도 되는건 아니지만
고를수 있게 나오는 정도는 된다.
단축키는 CTRL+. 이다.
필요한 클래스에 커서를 놓고 'CTRL + .' 을 누르면 위에 이미지와 같이 인텔리센스 기능이 된다. 선택후 Enter 하면은 자동 포함 된다.
'IDE/Tool > Visual Studio' 카테고리의 다른 글
[Visual Stdio 2010] 공백 표시 (0) | 2013.03.08 |
---|---|
[Visual Studio] Visual Studio Automation Object Model (0) | 2013.02.01 |
[Visual Stdio 2010] Developing Visual Studio Extensions (0) | 2012.12.13 |
[Visual Studio 2010] Productivity Power Tools, anksvn 확장 프로그램 (0) | 2012.12.13 |
[Visual Studio 2010] 정규표현식 (0) | 2012.12.12 |
트랙백
댓글
글
[Visual Stdio 2010] Developing Visual Studio Extensions
설정
링크 : http://msdn.microsoft.com/ko-kr/vstudio/vextend/
링크 : http://msdn.microsoft.com/ko-kr/library/dd885119(v=vs.100).aspx
'IDE/Tool > Visual Studio' 카테고리의 다른 글
[Visual Studio] Visual Studio Automation Object Model (0) | 2013.02.01 |
---|---|
[Visual Studio 2010] Visual Studio Automatically using (0) | 2012.12.18 |
[Visual Studio 2010] Productivity Power Tools, anksvn 확장 프로그램 (0) | 2012.12.13 |
[Visual Studio 2010] 정규표현식 (0) | 2012.12.12 |
[Visual Basic 6.0] 마우스 휠이 동작하지 않을때 (0) | 2012.08.02 |
트랙백
댓글
글
링크 : http://www.mztools.com/articles/2005/mz2005003.aspx
링크 : http://www.mztools.com/articles/2004/MZ2004003.aspx
링크 : http://www.codeproject.com/Articles/12244/Adding-Menu-Items-to-context-menus-inside-the-Visu
링크 : http://msdn.microsoft.com/ko-kr/library/microsoft.visualstudio.commandbars.aspx
링크 : http://msdn.microsoft.com/ko-kr/library/xc52cke4(VS.100).aspx
* Register
링크 : http://msdn.microsoft.com/en-us/library/19dax6cz(v=VS.90).aspx
링크 : http://blog.naver.com/kpetera?Redirect=Log&logNo=70134488358
'IDE/Tool > Visual Studio' 카테고리의 다른 글
[Visual Studio 2010] 정규표현식 (0) | 2012.12.12 |
---|---|
[Visual Basic 6.0] 마우스 휠이 동작하지 않을때 (0) | 2012.08.02 |
[Visual Studio 2005] 매크로 환경변수 (0) | 2012.04.11 |
[Visual Studio 2005] Visual Studio 2005 에서 ildasm.exe 위치 (0) | 2012.03.10 |
[Visual Studio] 마법사 만들기 (0) | 2012.03.08 |
트랙백
댓글
글
링크 : http://sonumb.tistory.com/29
Visual Studio 2005 상에서 쓰이는 Macro 환경 변수
Macro | Description |
$(ConfigurationName) | The name of the current project configuration, for example, "Debug|Any CPU". |
$(OutDir) | Path to the output file directory, relative to the project directory. This resolves to the value for the Output Directory property. It includes the trailing backslash '\'. |
$(DevEnvDir) | The installation directory of Visual Studio 2005 (defined with drive and path); includes the trailing backslash '\'. |
$(PlatformName) | The name of the currently targeted platform. For example, "AnyCPU". |
$(ProjectDir) | The directory of the project (defined with drive and path); includes the trailing backslash '\'. |
$(ProjectPath) | The absolute path name of the project (defined with drive, path, base name, and file extension). |
$(ProjectName) | The base name of the project. |
$(ProjectFileName) | The file name of the project (defined with base name and file extension). |
$(ProjectExt) | The file extension of the project. It includes the '.' before the file extension. |
$(SolutionDir) | The directory of the solution (defined with drive and path); includes the trailing backslash '\'. |
$(SolutionPath) | The absolute path name of the solution (defined with drive, path, base name, and file extension). |
$(SolutionName) | The base name of the solution. |
$(SolutionFileName) | The file name of the solution (defined with base name and file extension). |
$(SolutionExt) | The file extension of the solution. It includes the '.' before the file extension. |
$(TargetDir) | The directory of the primary output file for the build (defined with drive and path). It includes the trailing backslash '\'. |
$(TargetPath) | The absolute path name of the primary output file for the build (defined with drive, path, base name, and file extension). |
$(TargetName) | The base name of the primary output file for the build. |
$(TargetFileName) | The file name of the primary output file for the build (defined as base name and file extension). |
$(TargetExt) | The file extension of the primary output file for the build. It includes the '.' before the file extension. |
주절 주절~ 더군다나 영어!!
이럴땐 예시를 보는게 킹왕짱입니다. . -_-
- 보통 UNIX와 윈도우즈에서 말하는 Path는 "파일의 이름 및 확장자를 포함하는 경로"이고 Directory는 "파일의 경로만"을 얘기합니다.
그럼 파일의 Path가 "c:windowscmd.exe"라면 그 파일의 Directory는 "c:windows\" 인거죠. :)
또 다른 팁은 FileName = Name + Ext 가 있습니다..
그러면 이제 외우기 좀 쉬워지죠?
'IDE/Tool > Visual Studio' 카테고리의 다른 글
[Visual Basic 6.0] 마우스 휠이 동작하지 않을때 (0) | 2012.08.02 |
---|---|
[Visual Studio] Add-In 만들기 (0) | 2012.05.16 |
[Visual Studio 2005] Visual Studio 2005 에서 ildasm.exe 위치 (0) | 2012.03.10 |
[Visual Studio] 마법사 만들기 (0) | 2012.03.08 |
[Visual Studio 2008] Unicode 기반 프로그램에서 한글이 깨지는 현상 (0) | 2011.03.01 |
트랙백
댓글
글
이게 궁금해서 찾아보니 잘 설명된 블로그가 있어서 링크 걸어둡니다.
링크 : http://blog.naver.com/saltynut?Redirect=Log&logNo=120017351107
'.Net > C#' 카테고리의 다른 글
[C#] VS 2008 서식 자동 해제 (0) | 2012.04.06 |
---|---|
[C#] log4net (0) | 2012.04.03 |
[C#] Dynamic Method Call With Out Parameter (0) | 2012.03.22 |
[즐겨찾기] C# TreeView MultiSelect (0) | 2012.03.15 |
[C#] internal 지정자 (0) | 2012.03.12 |
트랙백
댓글
글
Visual Studio 2010에서는 더이상 Windows Mobile 개발을 지원하지 않습니다.
설정
조금 늦었지만 Visual Studio 2010 기능도 알아볼겸 설치를 했습니다.
아무리 찾아보아도 기존의 Windows Mobile 개발환경이 안보여서 찾아보니 2010 부터는 지원을 안하네요.
MS의 행보로 어느정도 예상은 했지만 너무 일찍 지원 중단을 하는건 아닌지 결국 Visual Studio 2008과 2010 둘다
설치해서 사용해야 할 듯 싶습니다.
RECENT COMMENT