본문 바로가기

[2013년] 1차 Synodus OB 모임 > 1. Synodus OB 2013 1차 정기총회 가. 시간 및 장소 - 늦은 6시부터 60분간, at 예인스페이스 나. 세부 일정 - 임원 선출 - 회칙 검토 2. Synodus OB 2013 늦은 신년회 가. 시간 및 장소 - 늦은 7시 00분부터 ~, at 비어테라스 나. 세부 일정 - 2013년 신년회 및 단합회 > 1. 예인스페이스(02-3481-1212, 김경환으로 예약~^^) http://map.naver.com/?lng=127.0256157&lat=37.4999865&dlevel=11&mapMode=0&pinId=13568468&pinType=site&enc=b64 2. 비어테라스(02-3452-7858) http://map.naver.com/?lng=127.027328&lat=37.50.. 더보기
[C++]프로그램 실행 ShellExecute(), ShellExecuteEx(), CreateProcess() http://www.codeproject.com/Articles/1842/A-newbie-s-elementary-guide-to-spawning-processes A newbie's elementary guide to spawning processes Introduction Often, we find questions coming from newbies on how to spawn a new process, how to open a particular document with the program associated with it, how to launch a web site, how to bring up the mail client's compose window, how to wait for a pro.. 더보기
[MFC] 버튼에 이미지 입히기 1. Button 생성 2. 속성 창에서 - Bitmap = True - Owner Draw = True 3. 다이얼로그에 CBitmapButton 클래스 멤버변서 하나를 추가 CBitmapButton m_BitmapButton; 4. OnInitDialog() 함수에서 m_BitmapButton.Attach(((CBitmapButton *)GetDlgItem(IDC_BITMAP_BUTTON))->m_hWnd); m_BitmapButton.LoadBitmaps(IDB_BITMAP_BUTTONUP, IDB_BITMAP_BUTTONDOWN, IDB_BITMAP_BUTTONUP, IDB_BITMAP_BUTTONX); m_BitmapButton.SizeToContent(); 를 추가해준다. 여기서 사용된 비트맵.. 더보기