https://www.youtube.com/watch?v=Yb7R7Dr2DBk
C# Tutorial 23: How to use DateTimePicker and save date in Database
DateTimePicker 속성창에서
- CustomFormat 을 바꾼다
- yyyy-MM-dd 형식으로
- Format을 Custom으로 바꾼다
comm.CommandText = "insert into tblFull (id, Name, Mobile, Date, Gender) values('" + txtID.Text + "','" + txtName.Text + "','" + txtMobile.Text + "','" + dTP.Text + "','" + cbGender.Text + "')";
와 같이 사용한다.
Beeeye Dmu
'C# Form' 카테고리의 다른 글
도서관 관리 프로그램 (0) | 2016.09.18 |
---|---|
Show()와 ShowDialog() (1) | 2016.09.18 |
Fully C# Save, Insert, Update, Delete, View, Search, Clear in Visual studio (0) | 2016.06.13 |
Create Login Window With User Authentication in C# step by step (0) | 2016.06.13 |
Create Login Window in C# step by step (0) | 2016.06.13 |