일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- ㅗ기
- mssql 로그축소
- 엑셀 2007 여러 개
- power builder
- RDP
- 테이블 명세서
- 엑셀 여러개 창 열기
- svn
- 윈도우
- 파워빌더
- 늑여탭
- 데이터윈도우
- Windows
- 이클립스
- 엑셀 두개 창 열기
- 로그파일 축소
- 카달로그뷰
- 엑셀 여러 창
- 이루나전기
- 엑셀 두개 창
- 엑셀 참조창
- 이루나
- 원격데스크톱
- 로그축소
- 엑셀 창모드
- 파워빌더 팁
- Shrink log
- 늑대와여우
- MSSQL
- Today
- Total
목록Programming/PowerBuilder (31)
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..
//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..