일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Machine Learning
- MongoDB
- 우리들교회
- data science
- 빅데이터
- Big Data
- 김양재 목사님
- 몽고디비
- 주일설교
- Statistics
- WebGL
- 김양재
- openCV
- 빅데이타
- 데이터 과학
- c++
- R
- 확률
- node.js
- Deep learning
- 통계
- Artificial Intelligence
- No SQL
- 빅 데이타
- 김양재 목사
- 빅 데이터
- probability
- nodeJS
- 딥러닝
- 인공지능
- Today
- Total
목록논리 드라이브 (2)
Scientific Computing & Data Science
MFC에서 논리 드라이브에 대한 정보를 표시하는 방법은 다음과 같다: [Header File]CComboBox m_wndDevices; CEdit m_wndVolume; CEdit m_wndFileSys; CEdit m_wndMaxLen; [Source Code]CString s; CString sRootPathName; CString sVolumeName; DWORD dwVolumeSerialNumber; DWORD dwMaxComponentLength; DWORD dwFileSystemFlags; CString sFileSystemName; m_wndDevices.GetWindowText(s); sRootPathName.Format(_T("%s\\"), s); BOOL bSuccess = ::GetV..
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..