'2017/09'에 해당되는 글 3건

  1. 2017.09.28 Nexacro-튜닝포인트
  2. 2017.09.26 유틸리티-MovieMaker 1
  3. 2017.09.25 근로계약서

[ Nexacro-튜닝포인트 ]

 

1. Hashmap 사용하기

    - 이유 : ds_nam.findRow(); - 자료가 많을 경우 경우 속도가 느려짐

    - 방법 :

         선언    : this.oDetailColIdx = {};

         값 Set : this.oDetailColIdx[pk컬럼1값 + ',' + pk컬럼2값] = row;   - 즉 pk를 key로 잡고, row를 set한다.

 

2. array_name.reduce

 

3. alasql

   - https://github.com/agershun/alasql

   - https://raw.githubusercontent.com/wiki/agershun/alasql/Similar-Projects.md

 

3. javascript용 excel

    - https://github.com/agershun/alax

    - node.js 용 excel

      .  https://todactodac.blogspot.kr/2016/06/nodejs-excel4node-node-excel.html?view=flipcard#!/2016/06/nodejs-excel4node-node-excel.html

      . https://talesofthefluxfox.com/2016/10/07/writing-to-xlsx-spreadsheets-in-node-js/

 

4. grid.enableRedraw 보단  grid.refreshBody(false)가 속도가 빠름.

 

5. makeRowIndex

    setGdmiColumn

    getGdmiColumn

    typeof

    viewRecord

 

6. dataset prototype 구현

    - set, get이 잘 안됨. 이유가 뭘까?

6.1 prototype 정의

this.calculatorInitSet = function(){
 var _pDataset = nexacro.Dataset.prototype;
 
 if(!_pDataset.setGdmiColumn) {
  _pDataset.setGdmiColumn = function(nRow, sCol, val) {
  
   try{
    this._rawRecords[nRow][sCol] = val;
    this._rawRecords[nRow][sCol].hi = val;
   }
   catch(e){}
  };
 }
 
 if(!_pDataset.getGdmiColumn) {
  _pDataset.getGdmiColumn = function(nRow, sCol) {
  
   try{
    return this._rawRecords[nRow][sCol];  -- _rawRecords :getColumn()함수보다 빠른 nexa 내부 함수
   }
   catch(e){}
  };
 }
 
 if(!_pDataset.getViewGdmiColumn) {
  _pDataset.getViewGdmiColumn = function(nRow, sCol) {
  
   try{
    return this._viewRecords[nRow][sCol];
   }
   catch(e){}
  };
 }
};

 

6.2 prototype 사용하도록 호출

      this.calculatorInitSet();

6.3 prototype 사용

      this.ds_name.getGdmiColumn(row, 'colid');

      this.ds_name.setGdmiColumn(row, 'colid', '값');

'Nexacro-이론 및 튜닝 > 기본문법' 카테고리의 다른 글

Nexacro-Null  (0) 2017.02.13
Nexacro - Array.초기화  (0) 2017.01.31
Nexacro 문법 - do while  (0) 2017.01.22
Nexacro 기본문법.Array2  (0) 2017.01.22
Nexacro 기본문법 - Array  (0) 2017.01.22
Posted by 농부지기
,

[ MovieMaker 설치방법 ]

 

1. download url : http://www.windows-movie-maker.org/download.html

 

2. 파일명 : windows-movie-maker-2016.exe

 

3. 설치

 

4. 설치 가 완료 되면 기본적으로 Trial Version으로 인식됨

 

5. 메인화면에서 - MovieMaker - 바로가기 icon 삭제

 

6. 정식버전 만들기

    - C:\Program Files (x86)\Windows Live\Photo Gallery

    - 이곳 폴더에 가서 'MovieMaker.exe' 를 바로가기  생성

    - 정식버전 끝

 

7. 한글화 하기

    - 첨부파일 download

    - C:\Program Files (x86)\Windows Live\Photo Gallery\en  폴더는 삭제

    - ko.zip  파일을 다운 받은 후 'C:\Program Files (x86)\Windows Live\Photo Gallery\ko'

      에 압축해제 후 붙여 넣는다.

    - 한글화 끝.

'유틸리티 > 유틸-기타' 카테고리의 다른 글

Ghost64.exe - windows10 backup  (1) 2019.11.23
오토매틱 클릭커  (0) 2019.06.02
Find In Files (파일내부 검색)  (0) 2018.12.20
토렌토 uTorrent_3-4-9-42973  (0) 2017.01.23
Posted by 농부지기
,

http://blog.naver.com/laborhyun01/221023639744

 

표준근로계약서  로 naver에서 검색  http://cafe.naver.com/workee/245923

    - 단시간 표준근로계약서

 

https://www.moel.go.kr/view.jsp?cate=3&sec=17&mode=view&pimSeq=1&piSeq=1&bbs_cd=OP0704&state=A&seq=1475742120817

Posted by 농부지기
,