Hi,
A very simple question that is still causing me some trouble. How do I change the size of the window so that it displays the full text (Input dosing date and time) when running the below script?
defdosingday = Today();
New Window( "Input dosing date and time",
<<Modal,
<<return result,
V List Box(
Text Box( "Date & time" ),
str1 = Number Edit Box( defdosingday, 10, <<SetFunction( Function( {that}, dosingday = str1 << get ) ) ),
str1 << set format( Format( "ddMonyyyy h:m" ) ),
),
H List Box( Button Box( "OK" ), Button Box( "Cancel" ) ),
);
I´ve tried different approaches but nothing works.
Br Julie