G
Guest
I have a module that finds the correct exchange currency rates. It will be
called from many forms. It is a function and I need to pass data to the
function, and I need the correct exchange currency rate passed back.
Here is the call:
GetExchangeRate (dRate), (sISO), (dtImportDate)
and the Definition for GetExchangeRate looks like this:
Public Function GetExchangeRate(dRate As Double, sISO As String,
dtImportDate As Date)
In the GetExchangeRate function I am setting DRate to the correct rate, but
when I come back to the sub where I initially called the GetExchangeRate the
dRate is still 0.
What am I missing?
Thanks so much and I hope this question isn't too confusing!
Thanks!
Janis
called from many forms. It is a function and I need to pass data to the
function, and I need the correct exchange currency rate passed back.
Here is the call:
GetExchangeRate (dRate), (sISO), (dtImportDate)
and the Definition for GetExchangeRate looks like this:
Public Function GetExchangeRate(dRate As Double, sISO As String,
dtImportDate As Date)
In the GetExchangeRate function I am setting DRate to the correct rate, but
when I come back to the sub where I initially called the GetExchangeRate the
dRate is still 0.
What am I missing?
Thanks so much and I hope this question isn't too confusing!

Thanks!
Janis