Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.62 KB | None | 0 0
  1. Public Class Form1
  2.  
  3.     Private Sub btClose_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btClose.Click
  4.         Me.Close()
  5.     End Sub
  6.  
  7.     Private Sub btCalcFat_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btCalcFat.Click
  8.         Dim fats(100) As Integer
  9.         Dim avgfats As Integer
  10.         Dim numberoffats As Integer
  11.         Dim totalfats As Integer
  12.         If Not IsNumeric(tbEntery.Text) Then
  13.             MsgBox("enter how fat you think that guy is")
  14.             For Each fat As Integer In fats
  15.  
  16.             Next
  17.         End If
  18.     End Sub
  19. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement