블로그 이미지
worhkd2

calendar

1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
2012. 2. 8. 02:23 프로그래밍/C#

DateTimePicker 사용

using System.Globalization; //Time객체 사용시 설정
using System.Threading; //쓰레드 사용시 설정

private CultureInfo CI;
private void SelectDate() //DB 날짜 데이터
{
            CI = new CultureInfo(System.Globalization.CultureInfo.CurrentCulture.LCID);
            this.m_lblBalanceDate.Text = dateTimePicker1.Value.ToString(CI.DateTimeFormat.FullDateTimePattern);
}

출처 : http://blog.naver.com/PostView.nhn?blogId=hanbyi&logNo=110029487343&parentCategoryNo=3&viewDate=&currentPage=1&listtype=0
posted by worhkd2