[팁] VS2005 유용한 Commands


File.OpenContainingFolder
상위 폴더 열기 - 소스코드의 탭제목 우측 클릭하면 나오는 메뉴
(Default 상태는 단축키가 없다, 단축키를 물려서 사용하면 편하다)


좌측의 영어는 메뉴 Tools -> Option 에서 Environment 하위 카테고리인 Keyboard 에서
"Show commands containing" 에서 입력한다면 단축키를 지정 또는 변경 할 수 있다.
(영문을 사용해서 영문기준으로 설명합니다)
크리에이티브 커먼즈 라이센스
Creative Commons License

Posted by Naturallaw

,
Response
No Trackback , No Comment
RSS :
http://bumis.cafe24.com/tc/NaturalLaw/rss/response/62

[잡담] 늑대 인간과 공략법



"누가 저 늑대인간을 저세상으로 보내는 은총알을 만들어 준다면!"


놀라운 재생능력을 가지고 있는 늑대 인간을 한방에 저제상으로 보내주는 은총알 따위는 세상에 존재하지 않아!!



크리에이티브 커먼즈 라이센스
Creative Commons License

Posted by Naturallaw

Response
No Trackback , No Comment
RSS :
http://bumis.cafe24.com/tc/NaturalLaw/rss/response/37

Visual C++ 2008 단축키 정리

첨부 파일은 마음껏 가져다 쓰셔도 좋습니다.

2005버젼 기본 단축키와 호환성도 정리 해두었습니다.

위 단축키에 대한 내용의 소유권은 Microsoft에 있습니다.


2008년 7월 10일 추가

크리에이티브 커먼즈 라이센스
Creative Commons License

Posted by Naturallaw

, , , , ,
Response
No Trackback , No Comment
RSS :
http://bumis.cafe24.com/tc/NaturalLaw/rss/response/27

'개밥 먹기' 라는 말이 있다.

'개밥 먹기' 라는 말이 있다.

개밥은 개가 먹는다.
개밥은 사람이 만든다.
개밥은 사람이 먹지 않는다.
개가 밥을 먹지 않는다.
개밥을 개가 왜 안먹는지 사람은 알지 못한다.

왜 개가 먹지 않을까?

크리에이티브 커먼즈 라이센스
Creative Commons License

Posted by Naturallaw

, ,
Response
No Trackback , No Comment
RSS :
http://bumis.cafe24.com/tc/NaturalLaw/rss/response/20

Function Pointer

Function Pointer

 

using namespace std;
void (CALLBACK *funcExternLog_ptr)(const char*) = NULL;
void CALLBACK Log(const char* szTemp)
{
 cout << szTemp << endl;
}
int _tmain(int argc, _TCHAR* argv[])
{
 cout << funcExternLog_ptr << endl;
 funcExternLog_ptr = Log;
 if(funcExternLog_ptr)
 {
  funcExternLog_ptr("asdf");
 }
 return 0;
}

크리에이티브 커먼즈 라이센스
Creative Commons License

Posted by Naturallaw

Response
No Trackback , No Comment
RSS :
http://bumis.cafe24.com/tc/NaturalLaw/rss/response/14

ASCII Character Codes Chart

From MSDN :)

사용자 삽입 이미지
사용자 삽입 이미지
크리에이티브 커먼즈 라이센스
Creative Commons License

Posted by Naturallaw

Response
No Trackback , No Comment
RSS :
http://bumis.cafe24.com/tc/NaturalLaw/rss/response/4

Visual C++ Warning 제어 하기

비쥬얼 스튜디오 C++ 에서

#pragma warning( push, 3 )
//소스코드 ...
#pragma warning( pop)

특정 소스코드에 위와 같이 추가 하면
프로젝트 속성이 warning level 4 라 할지라도 //소스코드 ... 부분은 warning level 3 이 적용된다.

특정 에러를 나오지 않게 할려면
#pragma warning ( disable : 4100 4511 )

이렇게 하면 C4100과 C4511의 경고가 나오지 않게 된다. 'ㅂ'/

공부 공부 >ㅅ</
크리에이티브 커먼즈 라이센스
Creative Commons License

Posted by Naturallaw

Response
No Trackback , No Comment
RSS :
http://bumis.cafe24.com/tc/NaturalLaw/rss/response/2


블로그 이미지

_-_)/ 뭘랄까.......

- Naturallaw

Notices

Calendar

«   2009/11   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30          

Site Stats

Total hits:
25007
Today:
6
Yesterday:
18