본문 바로가기

Application/Delphi Lecture126

Component 설치하는 방법 출처 노력하는 자는 이길 수 없다. | crattack http://blog.naver.com/crattack/70015057974 delphi 2006에서 ActiveX 컴포넌트 등록하기 delphi 2007/02/12 19:33 http://blog.naver.com/daehyun3230/80034632150 Installation of ActiveX Controls in Delphi 2005 and 2006 Borland Delphi 2005 and 2006 include a component import wizard for installing ActiveX controls. Unlike in earlier versions of Delphi where the use of this wizard was.. 2008. 8. 13.
공유기 사용시 Public IP 구하기 // 보통 공유기를 사용하여 인터넷에 접속할 경우 공유기로부터 내부 IP(192.168.x.x)를 받아 사용하게 // 되고 공유기는 이것를 Public IP 로 변환(NAT)하여 전송하는 라우터로서 동작하게 됩니다 // 이런 상황에서 ISP 로 부터 받은 공유기의 Publuc IP 를 로컬 컴퓨터에서 직접 알아보는 방법은 // SNMP 프로토콜을 이용하거나 trace route 해보는 방법이 있는데 좀 복잡합니다 // 간단하게 하는 방법은 접속 IP 를 echo 해주는 외부 서버에서 받아오는 방법입니다 // 아래 소스를 약간 응용하면 내 IP가 공인인지 사설인지 판단하는 루틴을 만들 수 있습니다 unit Unit1; interface uses Windows, Messages, SysUtils, Varia.. 2008. 8. 13.
How To Automate Word to Perform Mail Merge from Delphi How To Automate Word to Perform Mail Merge from Delphi View products that this article applies to. Article ID : 229310 Last Review : January 24, 2007 Revision : 3.3 This article was previously published under Q229310 On This Page SUMMARY MORE INFORMATION Building the Automation Sample REFERENCES SUMMARY This article demonstrates how to create and manipulate a Word document using Automation from .. 2008. 8. 13.
GDI+ 를 이용한 스트링 회전 The transforms do work, here's some sample code (GDI+) that mirrors around the x, y and x and y. Drop a TPaintbox on the form set the onpaint event to the following and you're away. cheers, Dave procedure TForm29.PaintBox1Paint(Sender: TObject); var graphics : TGPGraphics; FontFamily: TGPFontFamily; Font: TGPFont; SolidBrush: TGPSolidBrush; Matrix : TGPmatrix; SolidPen : TGPPen; r : TGPrectF; Gr.. 2008. 8. 13.