일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 비주얼스튜디오
- 오라클
- attr()
- MSSQL
- 이클립스
- javascript
- replace()
- aspnet
- 프로시저
- 엑셀
- ASP
- Winform
- 리포팅서비스
- c#
- IIS
- MS
- 마이크로소프트
- 자바스크립트
- 윈폼
- 윈도우
- SSRS
- microsoft
- Excel
- windows
- DataGrid
- 태그를 입력해 주세요.
- jQuery
- 단축키
- oracle
- CONVERT()
- Today
- Total
목록Month (5)
DJ메탈짱™의 Free Style
AW4 CELL 값 : 2012-06-18 수식 : =MONTH(AW4)&"월 "&INT((DAY(AW4)+7-WEEKDAY(AW4)-1)/7)+1&"주"
AW4 CELL 값 : 2012-06-18 수식 : MONTH(AW4)&"월 "&INT((DAY(AW4)+7-WEEKDAY(AW4)-1)/7)+1&"주"
AW4 CELL 값 : 2012-06-18 수식 : MONTH(AW4)&"월 "&INT((DAY(AW4)+7-WEEKDAY(AW4)-1)/7)+1&"주" 결과 : 6월 4주
DateTime startYMD=new DateTime(DateTime.Today.Year, DateTime.Today.Month, 1).AddMonths(-3).ToShortDateString() ; DateTime endYMD=new DateTime(DateTime.Today.Year,DateTime.Today.Month, DateTime.DaysInMonth(DateTime.Now.Year,DateTime.Now.Month)) ;
기준일 : 2007년12월18일 // 3개월 전 해당월의 시작일this.TextBox1.Text =new DateTime(DateTime.Today.Year, DateTime.Today.Month, 1). AddMonths(-3).ToShortDateString();결과 값 : 2007-09-01 // 현재월의 시작일this.TextBox1.Text =new DateTime(DateTime.Today.Year, DateTime.Today.Month, 1).ToShortDateString();결과값 : 2007-12-01