 |
|
อยากให้ messagebox แจ้งเตือนเมื่อไม่เลือกค่าใน combobox |
|
 |
|
|
 |
 |
|
ใช่ครับ
|
 |
 |
 |
 |
Date :
2017-06-01 16:05:24 |
By :
chichin |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ไม่แน่ใจว่าจะใช้คำตอบไม๊นะครับ

Code (VB.NET)
Private Sub ComboBox1_Leave(sender As Object, e As EventArgs) Handles ComboBox1.Leave
If String.IsNullOrEmpty(ComboBox1.SelectedItem) Then
MessageBox.Show("ทำมายไม่เลือกซักอันละคร้าบบบบบบ", "ข้อผิดพลาด", MessageBoxButtons.OK, MessageBoxIcon.Warning)
End If
End Sub
ผมใช้ ComboBox1_Leave event เพื่อตรวจสอบครับ
|
 |
 |
 |
 |
Date :
2017-06-01 16:19:38 |
By :
lamaka.tor |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ให้มันเยอะๆเข้าไว้ 555
Code (VB.NET)
Dim r As String = ""
Private Sub ComboBox1_Leave(sender As Object, e As EventArgs) Handles ComboBox1.Leave
If String.IsNullOrEmpty(r) Then
MessageBox.Show("ทำมายไม่เลือกซักอันละคร้าบบบบบบ", "ข้อผิดพลาด", MessageBoxButtons.OK, MessageBoxIcon.Warning)
Else
MessageBox.Show("คุณได้เลือกแล้วคร้าบบบบบบ" & vbCrLf & "ค่าที่คุณเลือกคือ:" & r, "ยืนยัน", MessageBoxButtons.OK, MessageBoxIcon.Warning)
End If
End Sub
Private Sub ComboBox1_Enter(sender As Object, e As EventArgs) Handles ComboBox1.Enter
r = ""
End Sub
Private Sub ComboBox1_SelectedIndexChanged(sender As Object, e As EventArgs) Handles ComboBox1.SelectedIndexChanged
r = IIf(String.IsNullOrEmpty(ComboBox1.SelectedItem), "", ComboBox1.SelectedItem)
End Sub
|
 |
 |
 |
 |
Date :
2017-06-01 16:36:12 |
By :
lamaka.tor |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
หรือไม่ก็ อาจจะเช็คจาก ComboBox ว่ามีค่ารึไม่
Code (VB.NET)
Private Sub ComboBox1_Leave(sender As Object, e As EventArgs) Handles ComboBox1.Leave
If String.IsNullOrEmpty(ComboBox1.Text) Then
MessageBox.Show("ทำมายไม่เลือกซักอันละคร้าบบบบบบ", "ข้อผิดพลาด", MessageBoxButtons.OK, MessageBoxIcon.Warning)
Else
MessageBox.Show("คุณได้เลือกแล้วคร้าบบบบบบ" & vbCrLf & "ค่าที่คุณเลือกคือ:" & ComboBox1.Text, "ยืนยัน", MessageBoxButtons.OK, MessageBoxIcon.Warning)
End If
End Sub
|
 |
 |
 |
 |
Date :
2017-06-01 16:39:11 |
By :
lamaka.tor |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขออภัยอย่างยิ่งที่แจ้งไม่ครบถ้วนคือ
พอหน้าฟอร์มโหลดมา ข้อมูลจะแสดงในcombobox แต่เราใช้ combobox.enable=fale; เพื่อไม่ให้ combobox ทำงาน

เมื่อเรากดปุ่มเพิ่ม จึงใช้ combobox.enbble=true; เพื่อให้ comboboxทำงาน แต่ปรากฎว่าช่อง combobox จะเป็นช่องว่าง

แต่เมื่อกดที่มุมขวาเพื่อให้แสดงข้อมุลใน combobox ก็จะขึ้นมาได้

สิ่งที่ต้องการคือเมื่อเรากดปุ่มเพิ่มแล้วหากเราไม่ได้กดเลือกข้อมุล (ซึ่่งจากภาพที่ 2 มันจะเป็นช่องว่าง)แล้วกดปุ่ม save เลย อยากให้ massagebox แจ้งเตือนให้เลือกข้อมูลด้วย ครับ
|
 |
 |
 |
 |
Date :
2017-06-07 14:22:20 |
By :
chichin |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอเป็น C# ด้วยนะครับ ขอขอบคุณล่วงหน้าคับ
|
 |
 |
 |
 |
Date :
2017-06-07 14:23:53 |
By :
chichin |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
Code (C#)
if (string.IsNullOrEmpty(ComboBox1.Text)) {
MessageBox.Show("ทำมายไม่เลือกซักอันละคร้าบบบบบบ", "ข้อผิดพลาด", MessageBoxButtons.OK, MessageBoxIcon.Warning);
} else {
MessageBox.Show("คุณได้เลือกแล้วคร้าบบบบบบ ค่าที่คุณเลือกคือ:" + ComboBox1.Text, "ยืนยัน", MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
|
 |
 |
 |
 |
Date :
2017-06-07 14:38:13 |
By :
lamaka.tor |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ได้แล้วครับ ขอบคุณมากครับ
|
 |
 |
 |
 |
Date :
2017-06-07 15:18:15 |
By :
chichin |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|