Hello,
Here is VBA-code to convert a traditional banking account number to IBAN :How can this be transferred to FWH ?
Thanks a lot for any help.
Here is VBA-code to convert a traditional banking account number to IBAN :
Public Function BBANtoIBAN(ByVal BBAN As String) As String
Dim xd As Object
Set xd = CreateObject("msxml2.domdocument.4.0")
xd.Load "http://www.ibanbic.be/IBANBIC.asmx/BBANtoIBAN?value=" & BBAN
Do While xd.readyState <> 4
  DoEvents
Loop
BBANtoIBAN = xd.Text
End FunctionThanks a lot for any help.
Regards,
Michel D.
Genk (Belgium)
_____________________________________________________________________________________________
I use : FiveWin for (x)Harbour v. 25.12 - Harbour 3.2.0 (May 2025) - xHarbour Builder (January 2020) - Bcc773