달력

12

« 2024/12 »

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
2011. 7. 21. 10:34

0721) MS-SQL 문자열 함수 모음 2011. 7. 21. 10:34

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

2011. 7. 15. 09:30

0715) Windows Azure 퍼옴2011. 7. 15. 09:30


http://www.architecturejournal.org/wiki/Windows_Azure_Platform

퍼오기가 뭐해서 링크를 그대로 겁니다.
:
Posted by 투잌

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

2011. 7. 14. 15:12

0714) 델파이 7.0 이후 새로운 기능들 2011. 7. 14. 15:12

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

2011. 7. 14. 14:50

0714) 델파이 코드사이트 (CodeSite) 사용법 업무2011. 7. 14. 14:50


로깅용 툴 코드 사이트 사용법.

델파이 XE 부터는 IDE 에 통합되어 있다. 사용법은 아래와 같다.

1. Library 추가
 Tools -> Option -> Delphi Options -> Library -> Library path 에
 "C:\Program Files\Raize\CS4\Lib\RS-XE" 같이 코드사이트의 라이브러리를 추가한다.

2. 사용 원하는 Unit 의 Uses 에 'CodeSiteLogging' 을 추가한다.

3. 소스를 확인하고 싶은 곳에 (ex : Button1Click) CodeSite.Send 와 같은 메소드를 집어넣는다. (메시지, 객체 등을 넘길 수 있다)


 

4. 컴파일 하고 실행한 후에 해당 프로시저가 실행되면(ex : Button1 을 누르면)
자동으로 CodeSite Live View 가 실행되면서 정보가 확인됨.



 

(클릭하면 큰 캡쳐로 보실 수 있습니다)

F11 을 누를 경우, 화면 오른쪽에 델파이의 오브젝트 인스펙터와 비슷한 모양의 속성 확인 창이 뜬다.

객체를 넘겼을 경우 디버깅 중에 해당 객체의 종합적인 정보를 확인하기 편하다.


코드 사이트 사용방법 동영상은 아래의 링크로...


http://edn.embarcadero.com/article/40970







 


:
Posted by 투잌
2011. 7. 14. 14:36

0714) 델파이 IDE 단축키 업무2011. 7. 14. 14:36






Escape Selects parent control in design mode. Left mouse click + Escape drags the parent control Delphi 2 이상
Shift + Click After selecting control in form designer, click on it with Shift again to select top most parent Form Delphi 5 이상
Tab In Object Inspector activates incremental search for properties. Press again Tab to move focus to property value Delphi 5 이상
Ctrl + J Invoke code templates also called code snippets Delphi 5 이상
Ctrl + T Delete text from cursor position until end of word Delphi 5 이상
Ctrl + E Incremental search Delphi 5 이상
Ctrl + Y Delete current line Delphi 5 이상
Ctrl + B Invoke buffer window when focus is on editor. The buffer window shows a list of all different tabs.
Ctrl + Shift + G Insert a new GUID at the cursor position Delphi 5 이상
Ctrl + Shift + I Indent the current selected block Delphi 5 이상
Ctrl + Shift + U Unindent the current selected block Delphi 5 이상
Ctrl + K + I Indent the current selected block or current line in case of no selection Delphi 5 이상
Ctrl + K + U Unindent the current selected block or current line in case of no selection Delphi 5 이상
Ctrl + Shift + J Invoke SyncEdit Borland Developer Studio 2006
Ctrl + Shift + V Automatically declare variable at cursor position Borland Developer Studio 2006
Ctrl + Shift + Y Delete to the end of line Delphi 5 이상
Alt + [ Match pair forward Delphi 5 이상
Alt + ] Match pair backward Delphi 5 이상
Alt + RightArrow Browse forward (hotlink history) Delphi 6 이상
Alt + LeftArrow Browse backward (hotlink history) Delphi 6 이상
Alt + UpArrow Browse to symbol under editor cursor (invoke a hotlink and add it to the hotlink history)
F4 Run program to current cursor position Delphi 2 이상
F5 Toggle breakpoint Delphi 2 이상
F7 Debugger step into Delphi 2 이상
Shift - F7 Trace into next source line Delphi 5 이상
F8 Debugger step over Delphi 2 이상
Shift - F8 Run until return Delphi 5 이상
F9 Run program under debugger Delphi 2 이상
Ctrl + F2 Program Reset Delphi 5 이상
Ctrl + F7 Evaluate/modify Delphi 2005 이상
Ctrl + F5 Add Watch Delphi 5 이상
Ctrl + F12 View units Delphi 2 이상
Alt + G Goto line number in editor Delphi 2 이상
Ctrl + O + G Goto line number in editor Delphi 5 이상
Ctrl + Shift + R Start/stop recording editor macro Delphi 2 이상
Ctrl + Shift + P Play editor macro Delphi 2 이상
Ctrl + Spacebar Invoke code completion Delphi 5 이상
Ctrl + Shift + Spacebar Invoke code parameter hints Delphi 5 이상
Ctrl + Enter Open file at cursor Delphi 2 이상
Ctrl + Shift + Enter Find all references Delphi 2005 이상
Ctrl + Shift + C Invoke class completion for the class that currently contains the cursor Delphi 5 이상
Ctrl + Shift + UpArrow Navigate to method implementation/declaration Delphi 5 이상
Ctrl + Shift + DownArrow Navigate to method implementation/declaration Delphi 5 이상
Ctrl + Shift + DownArrow Navigate to method implementation/declaration Delphi 5 이상
Ctrl + Shift + 1 - 9 Set a mark at current row in the source Delphi 2006 이상
Ctrl + 1 - 9 Go to a marked row in the source Delphi 2006 이상
Ctrl + Alt + F12 Opens the drop-down on the top-right corner of the code editor, listing all open files Borland Developer Studio 2006
Ctrl + Alt + Mouse Wheel Navigate to previous or next method implementation in lexical order in this source unit, or within the class to which scope has been limited using Ctrl+Q+L Borland Developer Studio 2006
Ctrl + Alt + UpArrow Navigate to previous method implementation in lexical order in this source unit, or within the class to which scope has been limited using Ctrl+Q+L Borland Developer Studio 2006
Ctrl + Alt + DownArrow Navigate to next method implementation in lexical order in this source unit, or within the class to which scope has been limited using Ctrl+Q+L Borland Developer Studio 2006
Ctrl + Alt + Home Navigate to the lexically first method implementation in this source unit, or within the class to which scope has been limited using Ctrl+Q+L Borland Developer Studio 2006
Ctrl + Alt + End Navigate to the lexically last method implementation in this source unit, or within the class to which scope has been limited using Ctrl+Q+L Borland Developer Studio 2006
Ctrl + Alt + P Activate the Tool Palette in filtering mode (start typing, press Enter to drop component) Delphi 2005 and up
Ctrl + Alt + A Adds current date to source code since BCB 4.0
Ctrl + / Toggle comment per line or selected block, Ctrl + ' on nordic (and perhaps other international ) keyboards Delphi 2005 이상
Ctrl + Shift + T Add todo list item Delphi 2005 이상
Alt + F12 Toggle between Form as text mode or design mode Delphi 5 이상
Alt + F11 Invoke Use unit dialog Delphi 5 이상
Ctrl + F11 Invoke Open Project Dialog Delphi 2005 이상
Ctrl + Alt + F11 Invoke Project manager window Delphi 2005 이상
F11 Invoke Object Inspector window Delphi 5 이상
F12 Toggle between code view and design view Delphi 5 이상
Alt + 0 Invoke Window list Delphi 2005 이상
Shift + Alt + F11 Invoke Structure window Delphi 2005 이상
Ctrl + Shift + B Invoke Browser window Delphi 5
Ctrl + Alt + B Invoke Breakpoint window Delphi 5 이상
Ctrl + Alt + S Invoke Call Stack window Delphi 5 이상
Ctrl + Alt + W Invoke Watches window Delphi 5 이상
Ctrl + Alt + L Invoke Local Variables window Delphi 5 이상
Ctrl + Alt + T Invoke Threads window Delphi 7 이상
Ctrl + Alt + F Invoke FPU window Delphi 2005(removed from Delphi 2006)
Ctrl + Alt + C Invoke CPU window Delphi 5 이상
Ctrl + Alt + V Invoke Event window Delphi 5 이상
Ctrl + Alt + M Invoke Modules window Delphi 2005 이상
Shift + F12 Invoke Forms window Delphi 5 이상
Ctrl + Shift + A Invoke Add to uses clause(Find unit in Delphi 2006) window (Refactoring) Delphi 2005 이상
Ctrl + Shift + F11 Invoke Project Options window Delphi 2005 이상
Ctrl + F9 Compile Project Delphi 5 이상
Shift + F9 Build Project Delphi 5 이상
Shift + F11 Invoke Add to project window Delphi 5 이상
Shift + Ctrl + F9 Run without debugging Delphi 2005 이상
Ctrl + F Find Delphi 3 이상
Shift + Ctrl + F Find in Files Delphi 3 이상
Alt + F7/F8 Previous/next result (for Find in Files and Build Error Messages) Delphi 7 이상
Ctrl+K+E Changes a word to lowercase and deselects selection Delphi 5 이상
Ctrl+K+F Changes a word to uppercase and deselects selection Delphi 5 이상
Ctrl+K+O Changes a word to lowercase Delphi 5 이상
Ctrl+K+N Changes a word to uppercase Delphi 5 이상
Ctrl+O+U Toggles case Delphi 5 이상
Ctrl+Shift+K+O Toggles Code folding between On and Off Delphi 2006 이상
Ctrl+Shift+K+A Code folding: Expands All blocks of code Delphi 2006 이상
Ctrl+Shift+K+E Code folding: Collapse current block of code Delphi 2006 이상
Ctrl+Shift+K+U Code folding: Expand current block of code Delphi 2006 이상
Ctrl+Shift+K+T Code folding: Toggle Current block (expand & collapse)
Ctrl+Shift+K+R Code folding: Collapses all regions {$region 'comment'}..{$endregion} Delphi 2006 이상
Ctrl+Shift+K+P Code folding: Collapse nested procedures
Ctrl+Shift+K+M Code folding: Collapse all methods
Ctrl+Shift+K+C Code folding: Collapse all classes
Ctrl+Shift+K+G Code folding: Collapses down to primary Groups [Interface/Implementation] Delphi 2006 이상
Ctrl+Shift+K+N Code folding: Collapses Namespace/Unit Delphi 2006 이상
Ctrl+Tab Switch to the next open file in the editor Delphi 2006 이상
Ctrl+Shift+Tab Switch to the previous open file in the editor Delphi 2006 이상
Ctrl + K + P Invokes print selection dialog Delphi 5 이상
Ctrl + K + W Invokes Write block to file(selected text) Delphi 5 이상
Ctrl + K + R Invokes Read block from file(inserts text at cursor) Delphi 5 이상
Ctrl + K + C Copies selected text at the end of the selection Delphi 5 이상
Ctrl + K + T Select word at cursor position Delphi 5 이상
Ctrl + O + L Selects current line Delphi 5 이상
Ctrl + Q + L Toggles between limiting the Ctrl+Alt navigation shortcuts to the current class, or limiting it to the current unit Borland Developer Studio 2006
Ctrl + Q + W Go to next item of Messages window Delphi 5 이상
Ctrl + F6 Switches between source (.cpp) and header (.h) BDS 2006 and up, C++ Builder personality

출처 : 위키피디아
:
Posted by 투잌
2011. 7. 13. 19:24

0713) Delphi XE 매뉴얼 (완성) 2011. 7. 13. 19:24

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

2011. 7. 13. 10:11

올해안에 결혼할 것 같다 주절2011. 7. 13. 10:11


좀 급박하게 진행되면 3개월 안에 하지 않을까.

한 것도 없이 빠듯하게 진행되겠네..

'주절' 카테고리의 다른 글

22년전의, 그리운 이름  (0) 2013.06.12
0824) 결혼준비  (0) 2011.08.24
서울은 너무 비싸다  (0) 2011.07.11
둘이 살면 괜찮아 보이는 집인디.. ㅠ  (0) 2011.07.07
0530) 윈도우즈 서버.. 어렵다.. =_=;  (0) 2011.05.30
:
Posted by 투잌
2011. 7. 12. 18:19

0712) 디자인 패턴 2011. 7. 12. 18:19

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

2011. 7. 11. 17:58

서울은 너무 비싸다 2011. 7. 11. 17:58

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

2011. 7. 11. 17:58

0711) Delphi XE FinalBuilder 시연 동영상 2011. 7. 11. 17:58

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

2011. 7. 7. 19:05

0707) 리펙토링 2011. 7. 7. 19:05

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

2011. 7. 7. 13:07

둘이 살면 괜찮아 보이는 집인디.. ㅠ 2011. 7. 7. 13:07

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

2011. 7. 6. 17:54

0706) MS SQL Server , SQL 강좌 2011. 7. 6. 17:54

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

2011. 6. 23. 17:31

0623) 델파이 함수 모음 2011. 6. 23. 17:31

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

2011. 6. 20. 17:51

0620) 델파이 예외 처리 공부2011. 6. 20. 17:51


인터넷 서핑중 건진 PDF 파일..


델파이 6 시작 그리고 완성 부록 중 하나라는데...

내가 보고 있는 책은 델파이 5 시작 그리고 완성... -_-;

나도 좀 더 버전업 된 책을 보고 싶다 ㅠㅠ

'공부' 카테고리의 다른 글

(111230) Format  (0) 2011.12.30
0902) 패스트리포트(FastReport) 3.0 / 4.0 매뉴얼  (0) 2011.09.02
0311) 자바 공부 홈피 주소  (0) 2011.03.11
0222) MS 워드 단축키 모음  (0) 2011.02.22
0207) 어셈블리 보충  (0) 2011.02.07
:
Posted by 투잌
2011. 6. 17. 17:53

0617) ERwin 사용법 워드 파일 업무2011. 6. 17. 17:53

인터넷에서 떠돌고 있는 것 가져왔는데...

제법 오래 된거라 참고만 하는 정도로 보세요...

:
Posted by 투잌
2011. 6. 17. 17:36

0617) Windows Server 2003 AD / File Server 매뉴얼 2011. 6. 17. 17:36

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

2011. 6. 16. 18:00

0616) ERwin 동영상 강좌 주소 업무2011. 6. 16. 18:00


http://dbblack.sogang.ac.kr/erwin/

으어 보고 있으니 정신이 혼미해진다...
:
Posted by 투잌
2011. 6. 8. 18:25

0608) SQL 2 2011. 6. 8. 18:25

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

2011. 6. 8. 13:52

0608) 오라클 SQL 내가 사용하는 것 모음. 2011. 6. 8. 13:52

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

2011. 6. 1. 13:48

0601) 분산 파일 시스템 (DFS) 2011. 6. 1. 13:48

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.

2011. 5. 31. 15:55

0531) 액티브 디렉토리 (Active Directory, AD) 2011. 5. 31. 15:55

보호되어 있는 글입니다.
내용을 보시려면 비밀번호를 입력하세요.