1
Add a current time synch into the DATETIME Picker object in AXIOM
Feedback / Product Ideas and Feature Requests / Axiom
Hello,
Would it be possible to add a button in the DATETIME picker object to synch to current local time ?
1 reply
-
Perhaps a solution that would work for you would be to add a button control to the Axiom application with this script:
public void Button1_OnClick(object sender, EventArgs eventArgs)
{
DateTimePicker1.DateTime=DateTime.Now;
}