Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 개발환경
- ubuntu
- Raspberry Pi
- python3
- uno
- Server
- IOT
- Python
- odroid-x2
- Android
- rails
- dht11
- Raspberry Pi 3
- JSON
- mqtt
- parser
- flask
- 아두이노
- ruby on rails
- Beacon
- orange pi
- nano
- 라즈베리파이
- Arduino
- java
- Nginx
- 오렌지파이
- RUBY
- STM32F4
- BLE
Archives
- Today
- Total
목록MFC (2)
[熱情]
콘솔창 띄우기
mfc를 하다가 콘솔에 printf 할때.. 사용.. #include using namespace std; #include #define _CONSOLE_DEBUG_MODE #ifdef _CONSOLE_DEBUG_MODE #pragma comment(linker, "/entry:WinMainCRTStartup /subsystem:console") #endif
카테고리 없음
2014. 4. 9. 16:52
GetDlgItem 함수
GetDlgItem Retrieves a pointer to the specified control or child window in a dialog box or other window. CWnd* GetDlgItem( int nID ) const; void GetDlgItem( int nID, HWND* phWnd ) const; // uses GetDlgItem to return a pointer to a user interface control CEdit* pBoxOne; pBoxOne = (CEdit*)GetDlgItem(IDC_MYEDIT); GotoDlgCtrl(pBoxOne);
카테고리 없음
2014. 4. 9. 16:46