업무일지 리포트 추가
This commit is contained in:
		| @@ -11,7 +11,19 @@ namespace FCM0000 | ||||
| { | ||||
|     public partial class fSelectDate : Form | ||||
|     { | ||||
|         public DateTime dtSelect = DateTime.Now; | ||||
|         private DateTime _dtSelect = DateTime.Now; | ||||
|         public DateTime dtSelect | ||||
|         { | ||||
|             get | ||||
|             { | ||||
|                 return _dtSelect; | ||||
|             } | ||||
|             set | ||||
|             { | ||||
|                 _dtSelect = value; | ||||
|             } | ||||
|         } | ||||
|          | ||||
|         public fSelectDate(string dtstr) : this(DateTime.Parse(dtstr)) { } | ||||
|         public fSelectDate(DateTime dt) | ||||
|         { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 chikyun.kim
					chikyun.kim