일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 주일설교
- Statistics
- probability
- c++
- 몽고디비
- 인공지능
- WebGL
- Artificial Intelligence
- Deep learning
- node.js
- 빅 데이타
- 김양재 목사
- openCV
- 빅 데이터
- R
- data science
- 우리들교회
- 딥러닝
- 빅데이타
- 통계
- 김양재
- Machine Learning
- No SQL
- 빅데이터
- nodeJS
- Big Data
- MongoDB
- 김양재 목사님
- 데이터 과학
- 확률
Archives
- Today
- Total
목록logical drives (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