|
|
|
C# Win Form เกี่ยวกับ Calendar เลือกดูวันที่จาก ComboBox |
|
|
|
|
|
|
|
ใช้ Control ของ month Calendar ครับ ง่ายสุด ๆ
Code (C#)
this.monthCalendar.SelectionStart = DateTime;
สามารถระบุได้เช่น Convert.ToDateTime("01-Feb-2015");
Code (C#)
private void btnLoad_Click(object sender, EventArgs e)
{
this.monthCalendar.SelectionStart = new DateTime(Convert.ToInt32(this.txtYear.Text), Convert.ToInt32(this.txtMonth.Text), 1);
}
|
|
|
|
|
Date :
2015-11-09 17:00:49 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้าเป็น VB.Net
Code (VB.NET)
Me.monthCalendar.SelectionStart = New DateTime(Convert.ToInt32(Me.txtYear.Text), Convert.ToInt32(Me.txtMonth.Text), 1)
|
|
|
|
|
Date :
2015-11-09 17:02:21 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|