Selected Plaform에서 32 / 64 bit 선택

Delphi Options - Library - Library path 우측 버튼 클릭

 

Greyed items denote invalid path 우측 버튼 클릭

 

zeos 폴더에서 아래 경로 Add

ZEOS PATH\packages\DelphiXE2

ZEOS PATH\packages\DelphiXE2\Build

ZEOS PATH\packages

ZEOS PATH\src

ZEOS PATH\src\component

ZEOS PATH\src\core

ZEOS PATH\src\dbc

ZEOS PATH\src\parsesql

ZEOS PATH\src\plain

 

 

ZEOS PATH\packages\DelphiXE2\ZeosDbo.groupproj 프로젝트 열기

 

64bit의 경우 Project Manager에서 Target Platforms에 Win64 추가하여 변경

 

ZeosDbo - Compile All

ZComponentDesign160.bpl - Install

64bit의 경우 이부분의 Target Platforms는 32bit로 선택해야 error가 나지 않음

TZConnection - LibraryLocation에 반드시 32bit / 64bit dll을 포함하여 배포하여야 함

 

'개발자료 > Delphi' 카테고리의 다른 글

Devexpress TdxRibbon Font 조정  (0) 2013.12.06
컴포넌트 속성 관련  (0) 2013.11.20
OleVariant -> string  (0) 2013.10.24
GDI+ Image Encoders and Decoders  (0) 2013.10.23
델파이API 파일 이동, 삭제, 복사  (1) 2013.10.16
Posted by 구룡포과메기
,

uses Variants;

function VarToStr(const V : Variant) : string;

function VarToStrDef(const V : Variant; const ADefault : string) : string;

Posted by 구룡포과메기
,

Saving an image in a certain format (such as JPEG or PNG) takes a couple of steps in the C++ version. You would have to enumerate all encoders that are installed on the system to find the encoder you are interested in. This enumeration would also take a couple of steps. For standard formats like BMP, GIF, JPEG, PNG and TIFF, this library allows you the specify the format directly without any encoder enumeration:

var
  Bitmap: IGPBitmap;
begin
  Bitmap := TGPBitmap.Create(200, 100);
  Bitmap.Save('Output.png', TGPImageFormat.Png);
end;

You can still enumerate encoders if you need to. This has been simplified too since the class function TGPImageCodecInfo.GetImageEncoders returns an array of all installed encoders:

var
  Bitmap: IGPBitmap;
  Codec: IGPImageCodecInfo;
begin
  Bitmap := TGPBitmap.Create(200, 100);
  for Codec in TGPImageCodecInfo.GetImageEncoders do
    if SameText(Codec.MimeType, 'image/targa') then
    begin
      Bitmap.Save('Output.tga', Codec);
      Break;
    end;
end;
출처 : http://www.bilsen.com/gdiplus/index.shtml

'개발자료 > Delphi' 카테고리의 다른 글

Devexpress TdxRibbon Font 조정  (0) 2013.12.06
컴포넌트 속성 관련  (0) 2013.11.20
델파이 XE2 ZEOS Component 설치방법(64bit 포함)  (0) 2013.10.29
OleVariant -> string  (0) 2013.10.24
델파이API 파일 이동, 삭제, 복사  (1) 2013.10.16
Posted by 구룡포과메기
,

mysql.exe 실행시 아래 오류가 뜰 경우 

Error 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO)

대신 아래와 같이 실행

mysql -uroot -p

mysql> use mysql;

mysql> grant all privileges on *.* to 'account'@'%' identified by 'password';

mysql> flush privileges; 

Posted by 구룡포과메기
,

* 이동

MoveFile(PChar('C:\test.txt'), PChar('D:\test_copy.txt'));

* 삭제

DeleteFile(PChar('C:\test.txt'));

* 복사

CopyFile(PChar('C:\test.txt'), PChar('D:\test_move.txt'), False);

False : overwrite

'개발자료 > Delphi' 카테고리의 다른 글

Devexpress TdxRibbon Font 조정  (0) 2013.12.06
컴포넌트 속성 관련  (0) 2013.11.20
델파이 XE2 ZEOS Component 설치방법(64bit 포함)  (0) 2013.10.29
OleVariant -> string  (0) 2013.10.24
GDI+ Image Encoders and Decoders  (0) 2013.10.23
Posted by 구룡포과메기
,

Edit - Preferences - SQL Queries - Query Results

unchecked "Limit Rows"

'개발자료 > SQL' 카테고리의 다른 글

ms-sql server2008 백업데이터 import  (0) 2014.05.08
TOAD 한글깨짐  (0) 2014.02.26
TOAD cannot find oci dll : oci.dll 오류시  (0) 2014.02.26
mysql dump version mismatch error  (0) 2013.11.04
mysql 원격접속 권한주기  (0) 2013.10.18
Posted by 구룡포과메기
,



Posted by 구룡포과메기
,

IAStorDataMgrSvc.exe

개발자료 2012. 2. 24. 14:19

파일정보


시작프로그램의 종류 : [System Service]
[제어판] - [관리도구] - [서비스]에 등록되어 윈도우가 시작할 때마다 자동으로 실행됩니다.
등록된 서비스이름 :

서비스를 사용안함으로 설정하려면, [시작] - [프로그램] - [보조프로그램] - [명령프롬프트]를 실행해서 다음명령줄을 차례대로 입력합니다.
http://www.windowexe.com




* 프로그램 버전 및 운영체제에 따라 서비스의 이름이 상이하여 적용이 안되는 경우가 있을 수 있습니다.
* [제어판] - [관리도구] - [서비스]에서 관련항목을 찾아 속성에서 서비스를 중지하고, 시작 유형을 사용안함으로 설정합니다.
* 서비스 이름과 표시되는 이름은 다른 경우가 많으므로 서비스목록에서 찾는게 어려울 수도 있습니다.



* 서비스의 삭제는 프로세스가 종료된 상태에서 입력해야 바로 적용이되며, 실행중인 상태에서는 재부팅해야 적용이 됩니다.
* Windows Vista 및 Windows 7 버전에서는 명령프롬프트를 관리자권한으로 실행하세요.

파일경로 :
http://www.windowexe.com
2012-02-24 210.16.217.4 http://www.windowexe.com

파일정보 :

[펌]http://www.windowexe.com/bbs/board.php?bo_table=board01_i&wr_id=1184

'개발자료' 카테고리의 다른 글

evc 다운로드  (0) 2012.01.27
Posted by 구룡포과메기
,

evc 다운로드

개발자료 2012. 1. 27. 11:51

'개발자료' 카테고리의 다른 글

IAStorDataMgrSvc.exe  (0) 2012.02.24
Posted by 구룡포과메기
,

cmd -> regsvr32 VB6IDEMouseWheelAddin.dll

Posted by 구룡포과메기
,