I need to test the date AND TIME if that is possible. Here's the code I have now:
Compute TodayDate/MDYY;
AppFlag/A4;
CALL GETDATE FROM TodayDate AppFlag INTO TodayDate AppFlag
Winform Show_Inactive Welcome
Winform Set Welcome.Text19.visible To NO
Compute TodayDate = '12272006';
...
case Go_To_Main_Menu
IF TodayDate LT '12292006'
CALL AJE100
ELSE
IF TodayDate LT '01022007'
BEGIN
Winform Close Welcome
GOTO Exit
ENDBEGIN
ELSE
CALL AJE100
endcase
I want to say if TodayDate LT '12282006 16:00'...
The examples in the help are not on point, and I wonder if this is supported in 5.3.2. I hard-code the date for testing, but ultimately I want to use the system date/time.
Thanks for any suggestions - this forum has been very helpful in the past.
Mike
Mike Anderson