While some of the details may change depending upon which card you are using, essentially you will just need to adjust the range for your signal.
You can find the command and how to use it by using the NI-DAQmx C Reference Help (
Start > All Programs > National Instruments > NI-DAQ)
You might like these functions:
int32 __CFUNC DAQmxSetAIRngLow/High(TaskHandle taskHandle, const char
channel[], float64 data);
or
int32 __CFUNC DAQmxSetAIGain(TaskHandle taskHandle, const char
channel[], float64 data);
Pick your favorite and go from there.
Regards,