/ Published in: VB.NET
This code can be used to make random items from a list of specified items.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
Private sub random() 'Creates the sub dim textbox as new textbox 'Makes a new textbox to store data Select Case textbox.text 'Starts the case block Case 0 '1st case define textbox.text = "lol" 'Whats inside of case 0 Case 1 '2nd case define textbox.text = "lawl" 'Whats inside of case 1 End Select 'End the case block End sub 'Ends the sub