คือถ้าเราต้องการเชคว่า ให้ใน txtamount ป้อนสินค้า ได้ไม่เกิน 1000 ชิ้น ถ้าเกิดนให้
msg show
เราเขียนแบบนี้มัน error อ่ะค่ะ Conversion from string "" to type 'Integer' is not valid.
Error มันจะขึ้นตอนกดปุ่มอื่นอ่ะค่ะ
Code (VB.NET)
Private Sub TxtAmount_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TxtAmount.TextChanged
If CInt(TxtAmount.Text) >= 1000 Then
MessageBox.Show("กรุณาเชคจำนวนสินค้าที่ป้อนใหม่ค่ะ")
TxtAmount.SelectAll()
Exit Sub
End If
End Sub
Private Sub TxtAmount_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TxtAmount.TextChanged
If CInt(val(TxtAmount.Text)) >= 1000 Then
MessageBox.Show("กรุณาเชคจำนวนสินค้าที่ป้อนใหม่ค่ะ")
TxtAmount.SelectAll()
Exit Sub
End If
End Sub