Hi all,
Trying to use a simple PayPal.me API, it works fine when you pass an absolute number for the money (150 for example) but when I tried to pass a string variable
containing the value it didn't work. Any hint appreciated:
Here's my code:
Trying to use a simple PayPal.me API, it works fine when you pass an absolute number for the money (150 for example) but when I tried to pass a string variable
containing the value it didn't work. Any hint appreciated:
Here's my code:
B4X:
Sub Button1_Click
Dim url As String = "http://www.paypal.me/myPayPalAccount/EditText1.Text" '&ET1.text '" &NumberFormat2(mstr1, 1, 2, 2, False)
WebView1.LoadUrl(url)
End Sub
'Note: if I used absolute money amount it works, but I want to put the money ammount on EditText1
'Dim url As String = "http://www.paypal.me/myPayPalAccount/600" (this works)