kkuzil.own@gmail.com

Posted
Filed under Development/Delphi

Delphi에서 JSON 을 사용하려고 예제를 찾아보고.. 나름 랩핑을 하려고 준비하는데..
내가 생각하는게 구현되어 있는 라이브러리를 발견했다;;;


RTTI 이용해서 클래스 데이터를 그대로 JOSN으로 내보내고 불러올 수 있는;;
암튼 앞으로의 개발에 많은 발전이 생길거 같다는!!!


이것도 써보고 내 입맛에.. 흐흐


JSON – SuperObject


Features:
- Fastest JSON parser for Delphi.
- XML to JSON parser.
- Easy to use.
- JSON Validator.
- JSON-RPC.
- Can write JSON format to be human readable.



http://www.progdigy.com/?page_id=6

svn 주소는 아래와 같다.

# Non-members may check out a read-only working copy anonymously over HTTP.
svn checkout http://superobject.googlecode.com/svn/trunk/ superobject-read-only
2012/07/02 22:48 2012/07/02 22:48
Posted
Filed under Development/Delphi

계속 brcc32.exe를 이용하여 파일을 리소스에 포함하여 생성하려는데
"VBuff allocation error" 이런 에러가 나면서 계속 실패했다.
재부팅을 해도 안되고.. 다른 파일들은 리소스로 생성이 잘되는데..

문제가 뭔고 하니.. 특정 Define을 주면서 (-d옵션)  특정 파일 용량이 올 경우 안되는 문제..


그냥 파일용량을 변경하니깐 잘되더라는..


정확한 문제는 모르고 이렇게 그냥 해결.


끝.
2012/06/21 17:00 2012/06/21 17:00
Posted
Filed under Development/Java & Android
매번 설치 할때마다 다른 블로그를 보고 했는데..
그것도 좋지만 내가 간단하게라도 정리하는것도 좋을거 같았다.

1. java JDK 설치

다운로드 : http://www.oracle.com/technetwork/java/javase/downloads/index.html

에디션은 SE를 받도록 하자.
자바에 대해서 잘 모르지만, ME(모바일), EE(엔터프라이즈) 이렇게 라고 한다.
자바 설치가 완료되면 "시작 - 실행 - cmd" 로 들어가서

>java -version 이라고 쳐서 잘 설치가 됐는지 확인해 본다.
2012-05-23 현재 버전 java version "1.7.0_04"

2. eclipse 설치

다운로드 : http://www.eclipse.org/downloads/
뭔가 버전이 굉장히 많은데..


The "Eclipse Classic" version is recommended. Otherwise, a Java or RCP version of Eclipse is recommended
참조 : http://developer.android.com/sdk/eclipse-adt.html#installing
"Eclipse Classic" 깔자..


eclipse는 설치버전이 아니고 압축파일 형식이기 때문에 원하는곳에 압축풀면된다.
난 루트에 풀었다.. (C:\eclipse_classic)
시작하면 작업 폴더를 선택한다. (C:\taskSunk)
 

3. android 개발 툴킷 설치 (ADT) - eclipse

원래 android SDK를 먼저 설치해야 하지만 요즘은 많이 편해졌다.
ADT를 먼저 설치하면 자동으로 알아서 설치해 준다.
    1. Help - Install New Software - 상단에 Add 버튼 클릭
    2. Name : ADT Plugin
    3. Location : https://dl-ssl.google.com/android/eclipse/ 입력 후 OK
    4. 가운데 트리뷰에 "Developer Tools"에 체크 후 Next 완료되면 또 Next
    5. 동의하고 Finish - 설치

4. android SDK 설치

Menu - Window - Android SDK Manager
원하는버전 체크 후 설치~

2012/05/23 20:24 2012/05/23 20:24
Posted
Filed under Development/Delphi

1. 우리나라 날짜 포맷
ShortDateFormat := 'YYYY-MM-DD';
DateSeparator   := '-';

2. 일본 날짜 포맷
ShortDateFormat := 'YYYY/MM/DD';
DateSeparator   := '/';


TimeSeparator := ':';
LongTimeFormat := 'hh:mm:ss';




function StrToDateTimeDef2(const S: string; const Default: TDateTime): TDateTime;
var
FormatSettings: TFormatSettings;
begin
FormatSettings.DateSeparator := '-';
FormatSettings.ShortDateFormat := 'yyyy-mm-dd';
FormatSettings.TimeSeparator := ':';
FormatSettings.LongTimeFormat := 'hh:mm:ss';

if not TryStrToDateTime(S, Result, FormatSettings) then
Result := Default;
end;
2012/05/21 11:17 2012/05/21 11:17
Posted
Filed under Development/Delphi
XE 이상 soft get 사이트에서 다운로드가 없어서 업데이트가 중단 된 줄 알았는데..
개발 사이트가 따로 존재했다...



Virtual Treeview is a Delphi treeview control built from ground up. Many years of development made it one of the most flexible and advanced tree controls available today. Virtual Treeview starts off with the claim to improve many aspects of existing solutions and introduces some new technologies and principles which were not available before.

Note: downloads are available from the project homepage at http://www.soft-gems.net


License: Google Code doesn't now support the display of multiple licenses. So only one is shown in the side bar. Virtual Treeview is published under a double license: MPL 1.1 and GPL 2.0.

http://code.google.com/p/virtual-treeview/



svn 주소는 아래와 같다.

# Non-members may check out a read-only working copy anonymously over HTTP.
svn checkout http://virtual-treeview.googlecode.com/svn/trunk/ virtual-treeview-read-only
2012/05/18 10:53 2012/05/18 10:53