일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- End of Darkness
- 아이폰
- 나지보 특성
- 벨팡
- 컬렉션 프레임
- 리눅스
- 명령어
- tcp
- 어플
- 집 정리
- 비행기 모드
- 포트(Port)
- 에셋
- 기업의 행포
- 아이패드
- 히오스
- php 홈디렉토리 변경방법
- TCP 네트워크 방식의 연결
- Collection Framework
- 나지보
- 자바
- 안드로이드
- 스랄 특성
- 변경된 정보
- 소캣(Socket)
- tcp네트워크
- game
- 안드로이드 Application Lifecycle
- unity
- 게임
- Today
- Total
목록모든 정보 (407)
Do Something IT
JavaScript 에서 Excel 파일의 sheet정보를 읽어 Csv로 저장 할때 다국어가 ?? 등 으로 깨지는경우가 발생 하였다. 무엇이 문제인지 알아보니 Csv로 저장될때 ENCODING이 ANSI로 저장되어 해당 국가 문자열이 깨져 나왔다 이 해결방안은 function saveAsCSV(sheet, tmpdir) { if (!F.FolderExists(tmpdir)) { F.CreateFolder(tmpdir); } var csvFile = tmpdir + "\\" + sheet.Name + ".csv"; // http://msdn.microsoft.com/en-us/library/office/ff198017.aspx // XlFileFormat Enumeration Table: CSV (6) s..
해당 셀에 있는 스트링을 문자열 길이로 정렬하기 Sub sort() Set thisSheet = ActiveSheet 'arrTargetFileName = Array("tsetWorkBook.xlsx", "tsetWorkBook2.xlsx") '========================== 타겟 에서 데이터를 읽어옴 ======================= '========================== 변수 선언 ======================= columnA = "A" arr = Array("D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q") nRowStartIdx = 4 nColumnStartIdx = 4 nRow..
using UnityEngine; using System.Collections; using UnityEditor; using System.Security.Cryptography; using System.Text; using System.IO; using System; public class csCDNPIDEncipherment : EditorWindow { public delegate string EnDel(string InputText, string Password); string _strTarget = ""; string _strEncoTarget = ""; static float _width = 1000; static float _height = 800; float _fontWidth = 15; s..
void OnGUI() { GUI.DrawTexture(ResizeGUI(Rect(100, 100, 100, 100)), GuiTexture); } Rect ResizeGUI(Rect _rect) { float FilScreenWidth = _rect.width / 800; float rectWidth = FilScreenWidth * Screen.width; float FilScreenHeight = _rect.height / 600; float rectHeight = FilScreenHeight * Screen.height; float rectX = (_rect.x / 800) * Screen.width; float rectY = (_rect.y / 600) * Screen.height; return..