Scope
DAQmxPage.cpp
1 #include "stdafx.h"
2 #include "DAQmxPage.h"
3 
4 namespace scope {
5  namespace gui {
6 
8  : daqmxversion_edit(&_parameters->diagnosis.daqmxversion) {
9 }
10 
11 BOOL CDAQmxPage::OnInitDialog(CWindow wndFocus, LPARAM lInitParam) {
12  daqmxversion_edit.AttachToDlgItem(GetDlgItem(IDC_DAQMXVERSION_EDIT));
13 
14  return 0;
15 }
16 
17 }}
bool AttachToDlgItem(HWND hWnd)
Attach the control to a dialog item.
Definition: ScopeEditCtrl.h:68
This is the include file for standard system include files, or project specific include files that ar...
CDAQmxPage(parameters::InputsDAQmx *const _parameters)
Connect to the FIFOStatus ScopeNumbers.
Definition: DAQmxPage.cpp:7
Parameters for pixel acquisition with NI-DAQmx.
Definition: IO.h:58
CScopeEditCtrl< std::wstring > daqmxversion_edit
DAQmx library version number.
Definition: DAQmxPage.h:22