Advertisement
Guest User

Untitled

a guest
Sep 6th, 2010
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  Timer1.Start()
  2.         If ComboBox1.Text = "Adobe Fireworks CS4" Then
  3.             Dim key As Integer
  4.             key = (Rnd() * 5)
  5.             Select Case key
  6.                 Case 1
  7.                     TextBox1.Text = "Hello"
  8.                 Case 2
  9.                     TextBox1.Text = "Please Subscribe"
  10.                 Case 3
  11.                     TextBox1.Text = ":)"
  12.                 Case 4
  13.                     TextBox1.Text = "Comment"
  14.                 Case 5
  15.                     TextBox1.Text = "Rate"
  16.  
  17.  
  18.             End Select
  19.         End If
  20.         If ComboBox1.Text = "Adobe Photoshop CS4" Then
  21.             Dim key As Integer
  22.             key = (Rnd() * 5)
  23.             Select Case key
  24.                 Case 1
  25.                     TextBox1.Text = "s"
  26.                 Case 2
  27.                     TextBox1.Text = "s"
  28.                 Case 3
  29.                     TextBox1.Text = "d"
  30.                 Case 4
  31.                     TextBox1.Text = "e"
  32.                 Case 5
  33.                     TextBox1.Text = "g"
  34.                
  35.  
  36.             End Select
  37.         End If
  38.         If ComboBox1.Text = "Adobe After Effects CS4" Then
  39.             Dim key As Integer
  40.             key = (Rnd() * 5)
  41.             Select Case key
  42.                 Case 1
  43.                     TextBox1.Text = "g"
  44.                 Case 2
  45.                     TextBox1.Text = "2"
  46.                 Case 3
  47.                     TextBox1.Text = "q"
  48.                 Case 4
  49.                     TextBox1.Text = "w"
  50.                 Case 5
  51.                     TextBox1.Text = "g"
  52.  
  53.  
  54.  
  55.             End Select
  56.         End If
  57.         If ComboBox1.Text = "Adobe Dreamweaver CS4" Then
  58.             Dim key As Integer
  59.             key = (Rnd() * 5)
  60.             Select Case key
  61.                 Case 1
  62.                     TextBox1.Text = "e"
  63.                 Case 2
  64.                     TextBox1.Text = "g"
  65.                 Case 3
  66.                     TextBox1.Text = "r"
  67.                 Case 4
  68.                     TextBox1.Text = "g"
  69.                 Case 5
  70.                     TextBox1.Text = "g"
  71.                
  72.  
  73.             End Select
  74.         End If
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement