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

Cotton Grading System On VB

Dim strength, length, micronare, trash As Single strength = Text1.Text


length strength Text1 Text2 result

length = Text2.Text micronare = Text3.Text trash = Text4.Text If strength >= 30 And strength <= 35 Then If length >= 30 And length <= 35 Then If micronare >= 3.2 And micronare <= 3.8 Then If trash >= 0.2 And trash <= 2 Then MsgBox "GM" Else MsgBox "fail" End If Else MsgBox "fail" End If Else MsgBox "fail" End If Else MsgBox "fail" End If End Sub
trash micronare

Text3

Text4

You might also like