Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
GAMBAS 0.35 KB | None | 0 0
  1. Public Sub TextBoxURL_GotFocus()
  2.  
  3.   Dim meheidodecopas As Boolean
  4.   Dim URL As String
  5.  
  6.   If Clipboard.Format = 1 Then URL = Clipboard.Paste()
  7.   meheidodecopas = (URL Like "htt{ps,p}://*.*") Or (URL Like "???.???.???.???") Or (URL Like "ftp://*") Or (URL Like "???.???.???.???")
  8.   If URL And meheidodecopas Then TextBoxURL.Text = Clipboard.text
  9.  
  10. End
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement