일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Excel
- 엑셀 두개 창 열기
- 엑셀 여러개 창 열기
- 데이터윈도우
- 테이블 명세서
- 엑셀 여러 창
- 이클립스
- 원격데스크톱
- 엑셀 2007 여러 개
- svn
- RDP
- 이루나전기
- 로그축소
- 이루나
- 파워빌더
- 윈도우
- Windows
- mssql 로그축소
- 엑셀 창모드
- 파워빌더 팁
- ㅗ기
- power builder
- 엑셀 두개 창
- Shrink log
- 로그파일 축소
- 카달로그뷰
- MSSQL
- 늑대와여우
- 늑여탭
- 엑셀 참조창
- Today
- Total
목록Programming (44)
why don't do your best
Mouse buttons KeyLeftButton! Left mouse buttonKeyMiddleButton! Middle mouse buttonKeyRightButton! Right mouse button Letters KeyA! - KeyZ! A - Z, uppercase or lowercase Other symbols KeyQuote! ' and "KeyEqual! = and +KeyComma! , and KeySlash! / and ?KeyBackQuote! ` and ~KeyLeftBracket! [ and {KeyBackSlash! \ and |KeyRightBracket! ] and }KeySemiColon! ; and : Non-printing characters KeyBack! Back..
pbdn www.pbdn.net 네이버 파워빌더 카페 http://cafe.naver.com/pentaeduclub 파워빌더 ui 디자인 http://powertothebuilder.com/PBUIDesigner.aspx
파워빌더 - 금액을 한글로 표기하기 출처요지경세상(http://wild-frontier.tistory.com/11) //스크립트 int MAX_LEN = 16 string ls_cnt [10] = {'일','이','삼','사','오','육','칠','팔','구',''} string ls_unit [4] = {'천','백','십',''} string ls_tmp, unit, ls_rtn string ls_i1, ls_i2, ls_i3, ls_i4, ls_s1, ls_s2, ls_s3, ls_s4, ls_chk int ii, jj, li_len decimal ld_num ld_num = dec(str_don) if ld_num < 0 then str_don = string(abs(ld_num)) ls_ch..
================================================================================ Windows의 API함수를 사용하여 구현한다. 먼저 Global External Functon 또는 Local External Function에 아래 함수를 추가한다. //특정파일과 연관된 작업을 실행(파일오픈,프린트...) Function Ulong ShellExecuteA (ulong hwnd ,String lpOperation ,String lpFile ,String lpParameters ,String lpDirectory ,int nShowCmd ) Library "shell32.dll" 예) .파일과 연결된 프로그램으로 파일 열기 ShellExecu..
Nsis 뭔가 비밀 첩보단체 이름 같다. Nullsoft Scriptable Install System 인스톨실드 만큼 강력한 기능을 가진 하지만 무료로 제공되는 프리웨어 셋업 프로그램이다. 앞으로 요기에 대한 자료가 있으면 올려야징…
//dw의 itemerror event 에 아래와 같이 써주세요 String ls_colname, ls_datatype Decimal Null_Dec SetNull(Null_Dec) ls_colname = dwo.Name ls_datatype = dwo.ColType CHOOSE CASE upper(mid(ls_datatype,1,3)) CASE 'NUM' This.SetItem(row, ls_colname, Null_Dec) RETURN 3 CASE ELSE RETURN 2 END CHOOSE 출처 PBDN Q/A
FOR ii = long(ls_info[1]) to long(ls_info[2]) //행수만큼 반복작업을 한다. FOR jj = 3 to UpperBound(ls_info) //담겨진컬럼수 만큼 반복한다. ls_type = Left(this.Describe(ls_info[jj] + '.ColType'),2) CHOOSE CASE ls_type CASE 'ch' ls_pass = this.GetItemString(ii, ls_info[jj]) CASE ELSE ls_pass = String(this.GetItemNumber(ii, ls_info[jj])) END CHOOSE //데이터 널 체크 IF ISNULL(ls_pass) OR TRIM(ls_pass) = ''THEN ls_pass = '' ls_st..
◈그리드 페이지 추가하는 방법 그리드 페이지에 추가에 필요한 설정들을 메서드로 만들었습니다. CM.SetGridUsePaging(LayoutEventArgs e) CM.SetGridUsePaging(LayoutEventArgs e, int pageSize) 사용방법은 grid 의 InitializeLayout 이벤트에 protected void grid_InitializeLayout(object sender, LayoutEventArgs e) { e.Layout.Bands[0].DataKeyField = "itemcd"; // 페이지를 위해 유니크값을 가지고 있는 컬럼을 DataKeyField 로 선언 CM.SetGridUsePaging(e); //기본적으로 pagesize는 100건. pagesize ..