by Jose Antonio | Aug 7, 2020 | JfControls
The calendar can be executed in the following way: procedure TFrExamples1.Calendar; var ADate: TDateTime; begin ADate := Now; JfCApp.Calendar(ADate); end;
by Jose Antonio | Jul 27, 2019 | JfControls
With the last version of JfControls the calculator should be executed as follows: procedure Calculator; var ANumber: Extended; begin ANumber := 1000; JfCApp.Calculator(2,ANumber); end; With older versions, you will need to do the following: procedure Calculator; var...