Ik heb dit script.
Maar hij laat bij x niks zien en bij y wel.
Ik heb dit ook al geprobeerd:
Maar toen liet hij Y ook bij x zien.
Weet iemand hoe ik dit kan oplossen?
Code:
Dim txt As String = Label1.Text.Replace("Mouse" & pw & "^^", "")
Dim x As String = txt.Split("#")(0).Replace("#", "").Replace("*", "")
Dim y As String = txt.Split("*")(1).Replace("*", "").Replace("#", "")
MsgBox(x)
MsgBox(y)
Maar hij laat bij x niks zien en bij y wel.
Ik heb dit ook al geprobeerd:
Code:
Dim txt As String = Label1.Text.Replace("Mouse" & pw & "^^", "")
Dim x As String = txt.Split("#")(2).Replace("#", "").Replace("*", "")
Dim y As String = txt.Split("*")(1).Replace("*", "").Replace("#", "")
MsgBox(x)
MsgBox(y)
Weet iemand hoe ik dit kan oplossen?
Laatst bewerkt door een moderator: