If IsNumeric(TextBox5.Text) = False Then
MsgBox("กรุณาใส่จำนวนเบิกเฉพาะตัวเลขเท่านั้น", MsgBoxStyle.OkOnly, " ")
TextBox5.Text = ""
Return
End If
If TextBox5.Text <= 0 Then
MsgBox("กรุณาใส่จำนวนเบิกตั้งแต่ 1 หน่วยขึ้นไป", MsgBoxStyle.OkOnly, " ")
TextBox5.Text = ""
Return
End If
แต่ในส่วนการบันทึกค่าทศนิยมยังไม่สามารถเขียนเงื่อนไขแสดง MsgBox ได้ครับ (เก็บ type เป็น int ครับ)