Hi
I am calling a posicoding function from an Access Form. To get an address I need to present part of the address to the function...i.e.TEKAPO, JE3 2EN as in....
rc = PCUTILS.PC_RapidAddress(Nz("TEKAPO, JE3 2EN", ""), recno, dpno)
That works just great..
So why doesn't this.....
Public TheAdd as string
TheAdd = Forms!manifest2!Address1 & ", " & Forms!manifest2!PostCode
rc = PCUTILS.PC_RapidAddress(Nz(TheAdd, ""), recno, dpno)
When I check TheAdd the value is as you would expect i.e. "TEKAPO, JE3 2EN"
So what's that all about?
I am calling a posicoding function from an Access Form. To get an address I need to present part of the address to the function...i.e.TEKAPO, JE3 2EN as in....
rc = PCUTILS.PC_RapidAddress(Nz("TEKAPO, JE3 2EN", ""), recno, dpno)
That works just great..
So why doesn't this.....
Public TheAdd as string
TheAdd = Forms!manifest2!Address1 & ", " & Forms!manifest2!PostCode
rc = PCUTILS.PC_RapidAddress(Nz(TheAdd, ""), recno, dpno)
When I check TheAdd the value is as you would expect i.e. "TEKAPO, JE3 2EN"
So what's that all about?