일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- data science
- 빅데이타
- probability
- 몽고디비
- 빅데이터
- MongoDB
- c++
- 주일설교
- 통계
- Big Data
- Machine Learning
- 인공지능
- 확률
- node.js
- 빅 데이터
- 딥러닝
- Statistics
- Artificial Intelligence
- R
- 김양재
- No SQL
- openCV
- 김양재 목사
- 데이터 과학
- WebGL
- nodeJS
- 빅 데이타
- Deep learning
- 우리들교회
- 김양재 목사님
Archives
- Today
- Total
목록드라이브 표시 (1)
Scientific Computing & Data Science
[C/C++] MFC / 시스템의 드라이브 문자 표시
MFC에서 자신의 Windows Machine의 논리 드라이브 문자 표시하는 방법은 다음과 같다: [Header File]CComboBox m_wndDevices; CEdit m_wndVolume; [Source Code]CString s; DWORD dwDrives = ::GetLogicalDrives(); for (int i = 0; dwDrives != 0; i++, dwDrives >>= 1) { if ((dwDrives & 0x01) == 0x01) { s.Format(_T("%c:"), 'A' + i); m_wndDevices.AddString(s); } } if (m_nVolume > (m_wndDevices.GetCount() - 1)) m_nVolume = (m_wndDevices.Get..
Programming/C&C++
2015. 1. 2. 12:49