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;
        }
2replies Oldest first
  • Oldest first
  • Newest first
  • Active threads
  • Popular
  • Hi Steve, I remember the DateTimePicker as a Tool up to V20. Where can I find the DateTimePicker on V22.1.2? 

    Like
    • fxbaggio I might misunderstand the question but I would say you can find it as a control option for applications in Axiom through a web browser. 

      Like