Change date format in a script
I have a script that requires the user to input a batch creation time. It currently looks like this: New Window( "BATCH_CREATE_TIME",
<<modal(),
Panel Box( "Enter BATCH_CREATE_TIME",
Lineup Box( N Col( 1 ) ),
number = Text Edit Box( "01/01/2021 09:00:00.000000" )
),
Panel Box( "Actions",
H List Box(
Button Box( "OK",
keep_going = 1;
BATCH_TIME = number << Get text;
),
B...