|
|
- - - - - - - - - - - - - - ผู้ให้การสนับสนุน- - - - - - - - - - - - - -
|
|
|
กระทู้ #3563 [C] (จาก IP: 1.47.169.184)
ช่วยหน่อยครับ ! เรื่องการแจ้งเตือน
ช่วยหน่อยครับ... คือผม ทำโปรแกรมเกี่ยวกับ การเช็คสินค้า มันมีปัญหา คือ ผมต้องการให้มัน แจ้งเตือนสินค้าที่ใกล้จะหมดหรือถึงปริมาณที่ต้องซื้อ โดยให้มีข้อความแจ้งเตือนที่หน้าโปรแกรม.... ผมไม่รู้ว่าจะเขียวโค้ดยังไง อะครับ
|
จากคุณ
:
sitthisak / sitthisakautama@hotmail.com [2015-08-06 15:12:12]
|
|
ความคิดเห็น #29254 (จาก IP: 110.168.232.245)
ทำไมหละครับ เช็คสินค้าว่ามีอะไรบ้างที่ใกล้จะหมด แล้วก็ แสดงเป็นตัวอักษร สีแดงๆ ก็ได้นี่ครับ (พื้นหลังสีขาว เพื่อเน้นก็ได้ตามแต่สะดวก) |
จากคุณ
:
maddog [2015-08-07 00:46:04]
|
|
ความคิดเห็น #29256 (จาก IP: 1.46.200.215)
นั้นหละครับ แต่คือมผเป็นมือใหม่เลยไม่ค่อยรู้เรื่องโค้ดอะครับ ต้องเขียนยังไง ครับ ผมทำใน Visual Studio นะครับ Windows Forms |
จากคุณ
:
sitthisak / sitthisakautama@hotmail.com [2015-08-10 10:04:52]
|
|
ความคิดเห็น #29257 (จาก IP: 61.91.35.66)
แสดงตัวอย่างเป็น dialog box ก็ได้ครับ ลองศึกษาดู
credit: http://www.dotnetperls.com/messagebox-show
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms;
namespace WindowsFormsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); }
private void Form1_Load(object sender, EventArgs e) { // // The simplest overload of MessageBox.Show. [1] // MessageBox.Show("Dot Net Perls is awesome."); // // Dialog box with text and a title. [2] // MessageBox.Show("Dot Net Perls is awesome.", "Important Message"); // // Dialog box with two buttons: yes and no. [3] // DialogResult result1 = MessageBox.Show("Is Dot Net Perls awesome?", "Important Question", MessageBoxButtons.YesNo); // // Dialog box with question icon. [4] // DialogResult result2 = MessageBox.Show("Is Dot Net Perls awesome?", "Important Query", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question); // // Dialog box with question icon and default button. [5] // DialogResult result3 = MessageBox.Show("Is Visual Basic awesome?", "The Question", MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2); // // Test the results of the previous three dialogs. [6] // if (result1 == DialogResult.Yes && result2 == DialogResult.Yes && result3 == DialogResult.No) { MessageBox.Show("You answered yes, yes and no."); } // // Dialog box that is right-aligned (not useful). [7] // MessageBox.Show("Dot Net Perls is the best.", "Critical Warning", MessageBoxButtons.OKCancel, MessageBoxIcon.Warning, MessageBoxDefaultButton.Button1, MessageBoxOptions.RightAlign, true); // // Dialog box with exclamation icon. [8] // MessageBox.Show("Dot Net Perls is super.", "Important Note", MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1); } } } |
จากคุณ
:
maddog [2015-08-10 11:32:15]
|
|
ความคิดเห็น #29259 (จาก IP: 1.46.200.215)
นี่ ภาษา C# รึ .net อะครับ ? |
จากคุณ
:
sitthisak / sitthisakautama@hotmail.com [2015-08-10 11:53:58]
|
|
ความคิดเห็น #29260 (จาก IP: 61.91.35.66)
จากคำถามน่าจะยังไม่เข้าใจในความสัมพันธ์ ของ C# และ .Net
.net คือเทคโนโลยีของ Microsoft ส่วน C# คือ ภาษาในการพัฒนาตัวนึงที่ .net รองรับ คำตอบ คือใช่ทั้ง C# และ .net ครับ |
จากคุณ
:
maddog [2015-08-10 14:14:09]
|
|
ความคิดเห็น #29261 (จาก IP: 1.46.200.215)
อ๋อ ครับผม ขอบคุณมาก ครับ ผมพึ่งมาเรียนรู้ เลยไม่เข้าใจอะไรหลายๆอย่าง |
จากคุณ
:
sitthisak / sitthisakautama@hotmail.com [2015-08-10 14:33:21]
|
|
|
- - - - - - - - - - - - - - ผู้ให้การสนับสนุน- - - - - - - - - - - - - -
|
|
|
|
|