델파이 HotKey ^ = Ctrl Key, @ = Alt Key, ~ = Shift Key HotKey 설명 ^+Space 코드 입력시 B를 치고 ctrl+space를 누르면 B로 시작하는 모든 변수, 함수, 프로시져, 컴포넌트 등을 보여준다. ^+~+Space 함수이름을 치고 인자를 입력할 때 Ctrl + Shit + Space 를 치면 필요한 인자들을 보여준다. ^+J 델파이 template 를 보여준다.. 델파이/델파이관련 2012.02.10
델파이로 Shortcut 만들기 Intro to ShortcutsWindows shortcut is a special type of file linked to another object (file or folder in most cases). We can think of a shortcut as a pointer to an object, it permits us to access a file or application without having to navigate to it on our hard drive. A shortcut is actually better termed as an alias file.Shortcuts are extremely useful and are the pr.. 델파이/델파이관련 2012.02.09
IdFTP 사용 [델파이] TIdFTP로 FTP 클라이언트 만들기 Develop 2009/02/05 02:28 http://blog.naver.com/dawnpr/130042012019 ■ FTP 서버 접속 // ftpCt: TIdFTP; 폼에서 선언 ftpCt.Host := edtHost.Text; // 기본 FTP 포트를 사용하는 경우, 설정 안해도 됨 ftpCt.Port := StrToInt(edtPort.Text); // Anonymous(익명)로 접속하는 경우 아래와 같이 .. 델파이/델파이관련 2012.02.09
델파이 ZLIB 사용하기 [펌] [강좌] ZLIB 사용하기 c/c++ 2005/01/10 11:35 http://blog.naver.com/pacho7/9145867 카페 > 프로그램의 세계(http:/.. | lhs0806 http://cafe.naver.com/builders/23[강좌] ZLIB 사용하기 ZLIB 사용하기 저자: 조호석 ( laday@chollian.net ) 이글은 자유롭게 배포하실 수 있습니다만, 반드시 출처를 밝혀주시기 바랍니 .. 델파이/델파이관련 2012.02.08
RichEdit Message Interface RichEdit Message Interface There are many RichEdit messages. In addition to the system edit control messages defined in winuser.h, there are many new messages defined in richedit.h. All edit messages handled by RichEdit (specifically by ITextServices::TxSendMessage()) are listed below. System edit and RichEdit 1.0 messages are defined in the system SDK. RichEdit 2.0 and 3.0 messages aren’t do.. 델파이/델파이관련 2011.09.28
Delphi Memo 에서 현재 Line 과 Column 알아내기 var Line, Column : integer; With Memo1 do begin Line := Perform(EM_LINEFROMCHAR,SelStart, 0) ; Column := SelStart - Perform(EM_LINEINDEX, Line, 0) ; end; 델파이/델파이관련 2011.09.28
델파이 함수 이름 문자로 함수 호출하기 private procedure ExecMethod(OnObject: TObject; MethodName: string) ; end; var Form1: TForm1; type TExec = procedure of object; procedure TForm1.ExecMethod(OnObject: TObject; MethodName: string) ; var Routine: TMethod; Exec: TExec; begin Routine.Data := Pointer(OnObject) ; Routine.Code := OnObject.MethodAddress(MethodName) ; if NOT Assigned(Routine.Code) then Exit; Exec := TExec(Routine) ; Exec.. 델파이/델파이관련 2011.05.04
Delphi Video Capture Component TVideoGrabber Homepage: http://www.datastead.com VisioForge Homepage: http://www.visioforge.com 델파이/델파이관련 2011.04.14
Delphi 2009, 2010 DataSnap The-New-Datasnap-in-Delphi-2009_WP.pdf Delphi_2010_WP_DataSnap_091016.pdf 델파이/델파이관련 2011.02.26