How to set default date interval in a date picker script ?
I want to set default dates in the the following date picker script, FROM 6 months back TO today.What do I need to add or modify in the script below?Names Default To Here( 1 );
clear log ();
New Window( "Query Date (last 6 months selected by default)",
<<Modal,
sd = Today();
ed = Today();
H List Box(
Text Box( "From:" ),
scal = Number Edit Box( sd, <<Set Format( Format( "yyyy-mm-dd" ) ),
...