Advertisement
binjeeclick

data_types

Nov 25th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.49 KB | None | 0 0
  1. Public Class Form1
  2.     Private Sub Button1_Click(ByVal sender As System.Object,
  3.         ByVal e As System.EventArgs) Handles Button1.Click
  4.         Dim check As Boolean
  5.         check = True
  6.         MsgBox("The value assigned for check is  : " & check)
  7.  
  8.         Dim count As Integer
  9.         count = 100
  10.         MsgBox("The value holding count is  : " & count)
  11.  
  12.         Dim str As String
  13.         str = "String test "
  14.         MsgBox("The value holding str is  : " & str)
  15.     End Sub
  16. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement