델파이 Class [펌] 델파이 클래스(Class) Delphi 2005/07/07 00:19 http://nsj0409.blog.me/20014525096 큰꼼 (네이버 블로그) | 큰꼼 http://blog.naver.com/vicbea19/100001463687당시 게시판이 텝문자 지원이 안되서 소스코드의 들여쓰기가 안되있는게 좀 그렇긴 하지만, 쉬운 코드들이니 차근히 보시면 되리라 생각이 된다. 그럼 강.. 델파이/델파이관련 2012.02.27
델파이 컴포너트 만들기 델파이 컴포넌트 만들기 강좌. 가. 기초 1. 콤포넌트 개발 기초 http://www.acrosoft.pe.kr/lecture/component1.htm 2. 프로퍼티 http://www.acrosoft.pe.kr/lecture/component1-3.htm 3. 프로퍼티 카테고리 http://www.acrosoft.pe.kr/lecture/component1-4.htm 4. 메소드와 이벤트 http://www.acrosoft.pe.kr/lecture/component1-5.htm 5. VCL http:/.. 델파이/Components 2012.02.14
TlistBox, TComboBox, TCheckBox, ToutLine, TTreeView TlistBox, TComboBox, TCheckBox, ToutLine, TTreeView 델파이 팁_강좌2007/03/05 22:06 http://blog.naver.com/janginco/35121379 ■ TlistBox, TComboBox, TCheckBox, ToutLine, TTreeView ● 여러개의 CheckBox가 동일한 Event Handler를 사용할 때 각각의 Checkbox에 대해 별개의 작업을 하게 하려면? TGroupBox 내에 여러 개의 Checkbox를 위.. 델파이/Components 2012.02.13
델파이 다음 컨트롤 자동 선택하기 procedure TForm8.cxTextEdit2KeyDown(Sender: TObject; var Key: Word; Shift: TShiftState); begin case Key of VK_UP: begin PostMessage(GetParentForm(self).Handle, wm_NextDlgCtl, 1, 0); Key := 0; end; VK_DOWN: begin PostMessage(GetParentForm(self).Handle, wm_NextDlgCtl, 0, 0); Key := 0; end; VK_RETURN: begin PostMessage(GetParentForm(self).Handle, wm_NextDlgCtl, 0, 0); K.. 델파이/델파이관련 2012.02.13
델파이 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
new component 에 ListBox 와 EditBox 두개 Control 넣기 Speedsearch in Listboxes with Delphi The article is about writing a Delphi TBListBox component to solve an old problem of searching items in listboxes. In Search of a good ListBox If often hear people ask why a listbox has a limitation of the number of items or the total amount of data you can store in it. I cannot imagine why anybody would put more than a handful of.. 델파이/Components 2012.02.06