1

Axiom Script - Finding the Value of a Tag at a Given Time Using the DateTimePicker

The following code snippet can be used to update a ValueBox using the OnDateTimeChange function of the DateTimePicker.
public void DateTimePicker1_OnDateTimeChange(object sender, DateTime dateTime)
{
string startTime = dateTime.ToString("o");
ValueBox1.AggregateStartTime = startTime;
}
Like
Follow
1
2replies