Advertisement
timetraveller1992

VB Form to show Random Generator Library

Aug 21st, 2014
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Imports RandomGenerator
  2.  
  3. Public Class Form1
  4.  
  5.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  6.         Dim rand As New RandomGenerator.Random
  7.         Label1.Text = rand.getRandom().ToString()
  8.     End Sub
  9. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement