전체 글340 외국어 리소스를 한글 리소스로 http://webdizen.new21.net/blog/entry/%EC%99%B8%EA%B5%AD-%EB%A6%AC%EC%86%8C%EC%8A%A4%EB%A5%BC-%ED%95%9C%EA%B8%80-%EB%A6%AC%EC%86%8C%EC%8A%A4%EB%A1%9C-%EC%88%98%EC%A0%95%ED%95%98%EA%B8%B0 2008. 2. 6. Subversion ignore pattern 일단 Visual Studio에서 사용되는 파일 확장자의 의미 inl : inline function file rc, rc2 : resource file def : module definition file aps : presource file에 대한 binary file bsc : browser database file clw : classwizard status file dsp : developer studio project file dsw : developer studio workspace file pch : precompiled header file pdb : program debugging(database?) file wsp : workspace info. file vcp : workspace i.. 2008. 2. 6. [Win32 API] Task bar 감추기 HWND hTask = FindWindow( _T( "HHTaskBar" ), NULL ); do { ShowWindow( hTask, SW_HIDE ); } while( IsWindowVisible( hTask ) ); TaskBar의 Class 이름으로 FinWindow하여 찾으면 이놈을 HIDE 시켜버린다. CE에서 해본건데 DeskTop에서도 잘 동작할지는 모르겠다. 2008. 2. 6. 영역 크기에 맞도록 비율을 맞추어 이미지의 크기 계산 CRect rect; GetClientRect( &rect ); long r_Width = 0, r_Height = 0; r_Width = rect.Width(); r_Height = rect.Height(); float ratio = 0, w_ratio = 0, h_ratio = 0; float ratio = 0, w_ratio_pre = 0, h_ratio_pre = 0; int nX = 0, nY = 0; w_ratio_pre = (float) m_nWidth / (float) r_Width; h_ratio_pre = (float) m_nHeight / (float) r_Height; long v_WIdth = 0, v_Height = 0; long v_Width_pre = 0, v_Height_p.. 2008. 2. 6. 이전 1 ··· 72 73 74 75 76 77 78 ··· 85 다음