Can one Task create two channel?because i have two kinds of channel to be used in my application.One is the differential.The other is NRSE,So i use following step: 1.create task first DAQmxCreateTask("ADTask",&mTaskHandle[ADTASK] 2.create differential channel:DAQmxCreateAIVoltageChan(mTaskHandle[ADTASK],"dev1/ai0",DAQmx_Val_Diff,"ReadVoltage",,RangeMin
,RangeMax,DAQmx_Val_Volts,NULL),3Create NRSE channel DAQmxCreateAIVoltageChan(mTaskHandle[ADTASK],"dev1/ai1",DAQmx_Val_NRSE"ReadVoltage",,RangeMin
,RangeMax,DAQmx_Val_Volts,NULL),
if i do like that,Can the task work normal?