Código

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 6

Dim n1 As Integer

Dim n2 As Integer

Dim n3 As Integer

Dim ap As Currency

Private Sub bntStop1_Click()

tmrImg1.Enabled = False

bntStop1.Enabled = False

End Sub

Private Sub btnPlay_Click()

tmrImg1.Enabled = True

tmrImg2.Enabled = True

tmrImg3.Enabled = True

bntStop1.Enabled = True

btnStop2.Enabled = True

btnStop3.Enabled = True

End Sub

Private Sub btnStop2_Click()

tmrImg2.Enabled = False

btnStop2.Enabled = False

End Sub

Private Sub btnStop3_Click()

tmrImg3.Enabled = False

btnStop3.Enabled = False

If img1 = img2 And img2 = img3 Then

lblCmoney.Caption = lblCmoney + 2000


End If

End Sub

Private Sub tmrImg1_Timer()

n1 = Rnd() * 9

If n1 = 0 Then

img1.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\00.jpg")

Else

If n1 = 1 Then

img1.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\11.jpg")

Else

If n1 = 2 Then

img1.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\22.jpg")

Else

If n1 = 3 Then

img1.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\33.jpg")

Else

If n1 = 4 Then

img1.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\44.jpg")

Else

If n1 = 5 Then

img1.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\55.jpg")

Else

If n1 = 6 Then

img1.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\66.jpg")

Else

If n1 = 7 Then

img1.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\77.jpg")


Else

If n1 = 8 Then

img1.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\88.jpg")

Else

If n1 = 9 Then

img1.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\99.jpg")

Else

End If

End If

End If

End If

End If

End If

End If

End If

End If

End If

End Sub

Private Sub Form_Load()

Randomize

ap = InputBox("¿Cuanto desea apostar?", "Casino")

While ap < 2000 Or ap > 50000

ap = InputBox("¿Cuanto desea apostar?", "apuesta incorrecta")

Wend

lblCmoney.Caption = ap

End Sub
Private Sub tmrImg2_Timer()

n2 = Rnd() * 9

If n2 = 0 Then

img2.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\00.jpg")

Else

If n2 = 1 Then

img2.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\11.jpg")

Else

If n2 = 2 Then

img2.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\22.jpg")

Else

If n2 = 3 Then

img2.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\33.jpg")

Else

If n2 = 4 Then

img2.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\44.jpg")

Else

If n2 = 5 Then

img2.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\55.jpg")

Else

If n2 = 6 Then

img2.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\66.jpg")

Else

If n2 = 7 Then

img2.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\77.jpg")

Else

If n2 = 8 Then

img2.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\88.jpg")

Else
If n2 = 9 Then

img2.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\99.jpg")

Else

End If

End If

End If

End If

End If

End If

End If

End If

End If

End If

End Sub

Private Sub tmrImg3_Timer()

n3 = Rnd() * 9

If n3 = 0 Then

img3.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\00.jpg")

Else

If n3 = 1 Then

img3.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\11.jpg")

Else

If n3 = 2 Then

img3.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\22.jpg")

Else

If n3 = 3 Then

img3.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\33.jpg")

Else
If n3 = 4 Then

img3.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\44.jpg")

Else

If n3 = 5 Then

img3.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\55.jpg")

Else

If n3 = 6 Then

img3.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\66.jpg")

Else

If n3 = 7 Then

img3.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\77.jpg")

Else

If n3 = 8 Then

img3.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\88.jpg")

Else

If n3 = 9 Then

img3.Picture = LoadPicture("C:\Users\Juan Camilo\Desktop\casino\99.jpg")

Else

End If

End If

End If

End If

End If

End If

End If

End If

End If

End If

End Sub

You might also like