Set Username and Password in a String

t0mt0m

Member
Licensed User
Longtime User
Is there a way in a string the user name and password set? Plan is to build a home screen to create a user name and password, and these values ​​are then transferred to the string.

Sub Globals
Dim link As String
link = "http://wfm.mywebsite.net/isps/index.html?username=xxxx&password=yyyy"
End Sub
 

NJDude

Expert
Licensed User
Longtime User
Like this:
B4X:
Sub Globals

Dim link As String
Dim Username As String
Dim Password As String
link = "http://wfm.mywebsite.net/isps/index.html?username=" & UserName & "&password=" & Password

End Sub
 
Upvote 0

t0mt0m

Member
Licensed User
Longtime User
thanks for help, but how to start it with screen to edit username and password and save it?
 
Last edited:
Upvote 0
Top