You are not logged in. You can browse in the PowerBASIC Community, but you must click Login (top right) before you can post. If this is your first visit, check out the FAQ or Sign Up.
LOCAL tDate AS QUAD
tDate = VAL(sTransitionDate)
lTranstion = (tDate * %workPeriod - qfbasedate) \ %WorkPeriod
Probably what the compiler is doing internally anyway, except I doubt it does VAL as a quad, so there's probably an extra numeric conversion going on in the expression.
So beat the rush and control it yourself this way?
%WorkPeriod = 3000000000&&
LOCAL lTransition AS LONG, sTransitionDate AS STRING, qfBaseDate AS QUAD
...
lTransition = (VAL( sTransitionDate) * %WorkPeriod - qfBaseDate) \ %WorkPeriod
The expression should be evaluated as a QUAD and then assigned to a LONG variable (QUAD upper limit > expression > LONG upper limit will be true before the last division). Is it necessary (or more optimal/efficient) to use CQUD at any point? Like so:
We process personal data about users of our site, through the use of cookies and other technologies, to deliver our services, and to analyze site activity. For additional details, refer to our Privacy Policy.
By clicking "I AGREE" below, you agree to our Privacy Policy and our personal data processing and cookie practices as described therein. You also acknowledge that this forum may be hosted outside your country and you consent to the collection, storage, and processing of your data in the country where this forum is hosted.
Leave a comment: