do i really have to declare a variable twice
IF intTemp > 32 or < 95 (because doesn’t state if these temp included too) Then
lblWarning.text = “Normal Temperature”
End if
that is wrong
im assuming the following is corrected because it doesnt say that there is build time errors.
If inttemp < 95 And inttemp > 32 Then
lblwarning.Text = "Normal Temperature"
End If
