//날짜형식체크 0:성공/1:해당 월의 날짜 넘음/-1:-인 날짜/2:존재하지 않는 달 function fn_IsDate(y, m, d) { var limit_day; switch (eval(m)) { case 1: case 3: case 5: case 7: case 8: case 10: case 12: limit_day = 31; break; case 2: if ((y - 2008) % 4 == 0) limit_day = 29; else limit_day = 28; break; case 4: case 6: case 9: case 11: limit_day = 30; break; default: return 2; break; } if (eval(d) > limit_day) { return 1 } if (e..
사용자 코드에서 System.Security.Cryptography.CryptographicException이(가) 처리되지 않았습니다. 해결 방법. 1. 해당 웹사이트의 응용프로그램 풀 선택 2. 고급설정 3. 사용자 프로필 로드 를 true로 설정 참고 http://blogs.msdn.com/alejacma/archive/2007/12/03/rsacryptoserviceprovider-fails-when-used-with-asp-net.aspx http://social.msdn.microsoft.com/forums/en-US/clr/thread/7ea48fd0-8d6b-43ed-b272-1a0249ae490f/
// 중복된 배열 값 제거 public T[] GetDistinctValues(T[] array) { List tmp = new List(); List tmpDuplication = new List(); for (int i = 0; i < array.Length; i++) { if (tmp.Contains(array[i])) { tmpDuplication.Add(array[i]); continue; } tmp.Add(array[i]); } return tmp.ToArray(); } 사용 string[] arrAA = aa.Split(','); arrAA = GetDistinctValues(arrAA);
create function dbo.fn_GetSplitValue ( @Param varchar(max) -- 대상 문자열 , @Div varchar(1) -- 구분자 , @ArrayIndex int -- 위치 ) returns varchar(max) as begin declare @Index int declare @Pos int declare @Order int declare @Output varchar(max) set @Index = 1 set @Pos = 1 set @Order = 1 while @Order 0 begin set @Pos = charindex(@Div, @Param, @Index) if @Pos = 0 or @Order = @Arra..
WPF에서는 thread를 크게 두가지로 나눕니다. 하나는 UI thread, 다른 하나는 비 UI thread 입니다. 첫번째 Thread => UI Thread = UI를 담당하는 Threade. 두번째 Thread => 비 UI Thread = WPF에서 별도로 생성하지 않고 이미 돌아가고 있는 프로세스 Thread 비 UI Thread에서 UI Thread에 그냥 접근하려 하면 런타임에러가 발생한다. 결방법은 Dispatcher.Invok함수를 사용하는 것! public delegate void InvokeTest(int temparg); public void function_name(int temparg) { //할 ui 작업 } Canvas cv;//접근할 canvas // 이벤트 처리 : ..
- Total
- Today
- Yesterday
- .NET Excel
- 로네펠트
- 윈터드림
- 아이팟 보조배터리
- God of War III
- 릴리스다이어리
- 아이폰 셀카
- Crows Zero
- 아이폰 카메라어플
- 모토스톰2
- 나를 기억하고 있는 너에게
- 러브트리프로젝트
- 안녕 바다
- GTO SHONAN 14DAYS
- 켄우드 정수기
- IT·컴퓨터
- hot 6
- 닷넷 파일형식
- 닷넷 엑셀
- 아이튠즈 없이 mp3가져오기
- 삼성 외장하드
- 보이스차
- georgia max
- Roibosh Vanilla
- KL-2200
- 아이폰 보조배터리
- KL2200
- 릴리스 다이어리 - 설레어
- 보이스티
- Lily's Diary
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |