I am comparing two dates and would like an image of a flag instead of a plain "X" when the two dates do not match.
//if scheduled begin date has past and percent complete is less than 100%, mark with a flag
Global StringVar tryImage;
if {Job_Operation.Sched_Start} < CurrentDate AND {Job_Operation.Act_Run_Qty}<{Job.Order_Quantity}
then (tryImage := "X" );
Any ideas how I can paste an image instead of an "X"?
//if scheduled begin date has past and percent complete is less than 100%, mark with a flag
Global StringVar tryImage;
if {Job_Operation.Sched_Start} < CurrentDate AND {Job_Operation.Act_Run_Qty}<{Job.Order_Quantity}
then (tryImage := "X" );
Any ideas how I can paste an image instead of an "X"?