กระทู้เก่าบอร์ด อ.Yeadram
1,011 1
URL.หัวข้อ /
URL
If Condition
ช่วยด้วยครับ
ผมมี หลาย combobox และ textbox ครับ
เงื่อนไขมีอยู่ว่า ถ้าไม่มีค่าใน combobox และ textbox ทั้งหมดให้ แสดงข้อความหลังจากที่กดปุ่ม submit
แนะนำวิธีเขียน If ให้ด้วยครับ ทำไม่เป็น
Private Sub submit_Click()
If Me.cbocategory.Value = "" And Me.cboname1.Value = "" And Me.cboname2.Value = "" And Me.txtstartdate.Value = "" And Me.txtenddate.Value = "" And Me.cbosalepersonid.Value = "" Then
MsgBox "Please Select item"
End If
End Sub
ผมมี หลาย combobox และ textbox ครับ
เงื่อนไขมีอยู่ว่า ถ้าไม่มีค่าใน combobox และ textbox ทั้งหมดให้ แสดงข้อความหลังจากที่กดปุ่ม submit
แนะนำวิธีเขียน If ให้ด้วยครับ ทำไม่เป็น
Private Sub submit_Click()
If Me.cbocategory.Value = "" And Me.cboname1.Value = "" And Me.cboname2.Value = "" And Me.txtstartdate.Value = "" And Me.txtenddate.Value = "" And Me.cbosalepersonid.Value = "" Then
MsgBox "Please Select item"
End If
End Sub
1 Reply in this Topic. Dispaly 1 pages and you are on page number 1
Time: 0.3779s
Private Sub Command27_Click()
If IsNull(cbocategory) And IsNull(cboname1) And IsNull(cboname2) And IsNull(txtstartdate) And IsNull(txtenddate) Then
MsgBox "Please Select item"
End If
End Sub