Table of Content
HAL Forum
function val B12Cur (
string CurncyTo,date CurncyDate,val Amount)
Description:
Returns a value in specified currency that has been converted from a value in primary (base 1) currency.
Parameters:
CurncyTo The currency mark into what we are converting to.
CurncyDate The date of the exchange rate.
Amount The value in B1.
external inner function val B12Cur(string,date,val);

global
procedure OnApplicationStartup() 
begin

  SetCompany(1,true);
  stopalert(B12Cur("USD",CurrentDate,100));

  return;
end;

Related topics:
««