Reply To: Does anyone know how to send links to pal rooms

#184489
Project SP
Member

ok loco…. u can also make the link in vb…..
here u go….. i know therz alots of ways we can do that
but. we dont all those codez…. we just simply use the replace
function…… for two characters that needs to be… changed to getpass
the paltalk site filter………. in this case it is “.” & “/”…..have fun

Private Sub Command1_Click() ' This Will Change Back the URL To Its Substitute link.....
Dim Temp As String ' Just For Temporary Resultz
Temp = Replace(Text1.Text, ".", "%2E")
Temp = Replace(Temp, "/", "%2F")
Text1.Text = Temp
End Sub



Private Sub Command2_Click() ' This Will Change Back the URL To Its Original link
Dim Temp As String ' Just For Temporary Resultz
Temp = Replace(Text1.Text, "%2E", ".")
Temp = Replace(Temp, "%2F", "/")
Text1.Text = Temp
End Sub