|
|
|
C# ค่าวันที่ระหว่าง textbox1 กับ textbox2 โดยที่ค่าใน textbox1 ต้องเป็นวัน/เดือน/ปี ก่อนค่าวันที่ใน textbox2 |
|
|
|
|
|
|
|
ออลืมบอกไป ผมใช้ CalendarExtender อะคับต้องกำหนดค่าตรงไหนหรอ
|
|
|
|
|
Date :
2011-07-21 10:43:10 |
By :
n_Plus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ช่วยทีคับบบบบ
ประมาณว่า
CalendarExtender2 ต้องเลือกวันที่หลังจาก CalendarExtender 1 อะคับบบบบบบบบ
|
|
|
|
|
Date :
2011-07-21 15:45:30 |
By :
Plus |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใช้การ Compare Date ครับ ตามตัวอย่างครับ
Code (C#)
DateTime date1 = new DateTime(2009, 8, 1, 0, 0, 0);
DateTime date2 = new DateTime(2009, 8, 1, 12, 0, 0);
int result = DateTime.Compare(date1, date2);
string relationship;
if (result < 0)
relationship = "is earlier than";
else if (result == 0)
relationship = "is the same time as";
else
relationship = "is later than";
Console.WriteLine("{0} {1} {2}", date1, relationship, date2);
ถ้าใน SQL ให้ใช้ BETWEEN ครับ
|
|
|
|
|
Date :
2011-07-21 21:00:30 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอโค๊ดที่สมมุติว่าเราสร้าง textbox ไว้ 2 textbox แล้วถ้าเราเลือก textbox 1 วันที่ 1 มกรา 51 แล้วอยากให้ textbox2 ขึ้นวันที่ 1 มกรา 52 อัตโนมัติอ่าค๊าฟ ทำยังไงหรอ??? ขอเป็นโค๊ด VB 2008 นะคั๊ฟ ขอบคุนคั๊ฟ
|
ประวัติการแก้ไข 2011-07-22 03:01:05
|
|
|
|
Date :
2011-07-22 02:57:56 |
By :
idearkung |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เงียบจัง มีผู้รู้บ้างไหมค๊าฟ
|
|
|
|
|
Date :
2011-07-23 22:46:33 |
By :
idearkung |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|