Advertisement
stefan1919

textQuotation

Sep 30th, 2015
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Public Class Form1
  2.  
  3.     Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
  4.         Dim msg As String = "Skittles is an old form of bowling " &
  5.         "in which a wooden disk is used to knock " &
  6.         "down nine pins arranged in a square. "
  7.         If TextBox2.Text.ToUpper = "N" Then
  8.             MessageBox.Show(msg, "")
  9.         End If
  10.         TextBox1.Text = "Life ain't all beer  &  skittles. – Du Maurier (1894)."
  11.     End Sub
  12.  
  13.     Private Sub Label1_Click(sender As Object, e As EventArgs) Handles Label1.Click
  14.     End Sub
  15. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement