Simple Lottery Game (Guna UI) VB.NET Guna UI Download : https://gunaframework.com/ FORM 1 Public Class Form2 Dim R1, R2, R3 As New Random Dim PHP As Double = R1.Next(1, 999) Private Sub Form2_Load(sender As Object, e As EventArgs) Handles MyBase.Load Dim formattedValue As String = String.Format("{0:C}", PHP) Label5.Text = formattedValue End Sub Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick 'Random Generator Label1.Text = R1.Next(1, 3) End Sub Private Sub Timer2_Tick(sender As Object, e As EventArgs) Handles Timer2.Tick 'Random Generator Label2.Text = R2.Next(1, 5) End Sub Private Sub Timer3_Tick(sende...
Comments
Post a Comment