Hi,
Modifing a task at run-time is doable, but requires programming. There is not a way launch the DAQ Assistant to configure a task from LV when an application is running. But you can use the DAQmx property nodes to change your task configuration. If there are a handful of properties that you want to allow the user to change, write a GUI that presents these options to your user and then use DAQmx property nodes to modify the task configuration. It is recommended that you make these changes when the task is not running (i.e. before DAQmx Start Task). If the task is already running, stop the task (using DAQmx Stop Task), make the changes, and restart it (using DAQmx Start Task). Very few properties can be changed while a task is running. If you need to make th
e change while the task is running, you can experiment with making the change to see if your need-to-change property is one that can be changed when a task is running. The DAQmx property node will return an error if that property cannot be changed at that time.
Hope this helps.
Deborah