Showing posts with label RAD Studio 2009. Show all posts
Showing posts with label RAD Studio 2009. Show all posts
2009/12/23
CodeGear IDE Fix Pack 2009/2010 2.9 Released
Embarcadero의 RAD Studio IDE의 패치인 IDE Fix Pack 이 새 버전을 공개하였다.
아래 내용은 IDE Fix Pack 2.9에 대한 설명으로 홈페이지에서 발췌를 하였다.
The IDE Fix Pack 2009/2010 installs is a DLL-Expert that fixes the following Delphi/C++Builder 2009/2010 bugs at runtime. All changes are done in memory. No file on disk is modified. None of your projects are modified or benefit from the IDE Fix Pack.
RAD Studio 2010 fixes:
RAD Studio 2009 fixes:
IDE Fix Pack 2009/2010 2.9
Original Post : http://neodreamer-dev.tistory.com/351
아래 내용은 IDE Fix Pack 2.9에 대한 설명으로 홈페이지에서 발췌를 하였다.
The IDE Fix Pack 2009/2010 installs is a DLL-Expert that fixes the following Delphi/C++Builder 2009/2010 bugs at runtime. All changes are done in memory. No file on disk is modified. None of your projects are modified or benefit from the IDE Fix Pack.
RAD Studio 2010 fixes:
- Undo destroys editor buffer
- F1 key doesn’t work if invoked from the ObjectInspector
- Vista compatible icons (256×256) aren’t supported
- Stepping through the code can be slow
RAD Studio 2009 fixes:
- Stepping through the code can be slow
- Vista compatible icons (256×256) aren’t supported
- Undo destroys editor buffer
- 64 bit Debugger assertion (see also hotfix from Embarcadero for 2009)
- QC #75738: Debugging extremly slow
- QC #71575: Delphi 2009 literal string assigment
- QC #47242: Possible AV when shutting down the IDE
- QC #47807: Error insight fails to find TObject class
- Possible deadlock when Error Insight calls ProcessMessages
- QC #68493: Switching away and back to Delphi orphans focus on Code Editor
- QC #37462: IDE may select the wrong file when performing a ctrl + left-click on a filename in the editor
- QC #22880: Cannot resolve unit name
- QC #58045: Component captions and component icons disappear from form designer
- QC #69456: IDE dead lock when updating the editors
- QC #55910: TDBText.Color always reverts to Parent.Color
- QC #59963: Closing non-modal forms after a task switch can deactivate the application
- QC #56252: TPageControl flickers a lot with active theming
- QC #68730: TLabel is not painted on a themed, double-buffered TTabSheet in Vista
- ToolsAPI IOTAProjectOptions.GetOptionNames destroys options.
- QC #74646: Buffer overflow in TCustomClientDataSet.DataConvert with ftWideString
IDE Fix Pack 2009/2010 2.9
Original Post : http://neodreamer-dev.tistory.com/351
Labels:
CodeGear
,
Delphi
,
Embarcadero
,
IDE Fix Pack
,
RAD Studio 2009
,
RAD Studio 2010
,
RAD Studio IDE
,
TistoryOldPost
2009/12/06
Delphi IDE Fix Pack 2009/2010 2.8 Released
Embacadero RAD Studio 2009/2010 의 통합 개발 환경(IDE)의 버그를 수정한 IDE Fix Pack 이 2.8 버전을 공개하였다.
이번 버전에서 수정된 사항
RAD Studio 2010 fixes:
RAD Studio 2009 fixes:
Original Post : http://neodreamer-dev.tistory.com/343
이번 버전에서 수정된 사항
RAD Studio 2010 fixes:
- Undo destroys editor buffer
- F1 key doesn’t work if invoked from the ObjectInspector
- Vista compatible icons (256×256) aren’t supported
- Stepping through the code can be slow
RAD Studio 2009 fixes:
- Stepping through the code can be slow
- Vista compatible icons (256×256) aren’t supported
- Undo destroys editor buffer
- 64 bit Debugger assertion
- QC #71575: Delphi 2009 literal string assigment
- QC #47242: Possible AV when shutting down the IDE
- QC #47807: Error insight fails to find TObject class
- Possible deadlock when Error Insight calls ProcessMessages
- QC #37462: IDE may select the wrong file when performing a ctrl + left-click on a filename in the editor
- QC #22880: Cannot resolve unit name
- QC #58045: Component captions and component icons disappear from form designer
- QC #69456: IDE dead lock when updating the editors
- QC #55910: TDBText.Color always reverts to Parent.Color
- QC #59963: Closing non-modal forms after a task switch can deactivate the application
- QC #56252: TPageControl flickers a lot with active theming
- QC #68730: TLabel is not painted on a themed, double-buffered TTabSheet in Vista
- ToolsAPI IOTAProjectOptions.GetOptionNames destroys options.
- QC #74646: Buffer overflow in TCustomClientDataSet.DataConvert with ftWideString
Original Post : http://neodreamer-dev.tistory.com/343
Labels:
C++ Builder
,
CodeGear
,
Delphi
,
Embarcadero
,
IDE
,
RAD Studio 2009
,
RAD Studio 2010
,
TistoryOldPost
2009/07/22
Windows 7 에서의 RAD Studio 2009 버그 해결 방법!!
얼마전 새로운 운영체제인 Windows 7 에서 C++ Builder 2009 사용시 발생하는 문제에 대하여 글을 쓴 적이 있는데 오늘 RSS Reader 를 탐독하다 해결책에 대한 글을 발견했다.
2009/04/17 - [Dev Story/Mess] - C++ Builder 2009 Bug on Windows 7
이 방법은 DLL 파일 중 조건부 점프(JZ : 0x74)를 무조건 점프(JMP : 0xEB)로 바꾸는 것이다.
1) bordbk***.dll 을 찾는다 ( Delphi 2007 의 경우 bordbk105.dll, Delphi 2009 의 경우 bordbk120n.dll 이다)
2) 원본 파일을 백업해 두고 dll 파일을 Hex Editor로 연다.
3) 다음 코드를 찾는다 (01 00 48 74 47 80 3D) 이 코드는 한번만 존재 한다.
4) 찾은 코드 중 74 를 EB 로 바꾸고 저장한다.
참고로 이 방법은 공식적인 방법이 아니란다.
자료 출처 :
http://www.delphifeeds.com/go/f/58293
http://www.delphifeeds.com/go/f/58308<
Original Post : http://neodreamer-dev.tistory.com/311
2009/04/17 - [Dev Story/Mess] - C++ Builder 2009 Bug on Windows 7
이 방법은 DLL 파일 중 조건부 점프(JZ : 0x74)를 무조건 점프(JMP : 0xEB)로 바꾸는 것이다.
1) bordbk***.dll 을 찾는다 ( Delphi 2007 의 경우 bordbk105.dll, Delphi 2009 의 경우 bordbk120n.dll 이다)
2) 원본 파일을 백업해 두고 dll 파일을 Hex Editor로 연다.
3) 다음 코드를 찾는다 (01 00 48 74 47 80 3D) 이 코드는 한번만 존재 한다.
4) 찾은 코드 중 74 를 EB 로 바꾸고 저장한다.
참고로 이 방법은 공식적인 방법이 아니란다.
자료 출처 :
http://www.delphifeeds.com/go/f/58293
http://www.delphifeeds.com/go/f/58308<
Original Post : http://neodreamer-dev.tistory.com/311
Labels:
C++ Builder
,
RAD Studio 2009
,
TistoryOldPost
,
windows 7
,
Windows 7 x64
2009/03/05
IDE Fix Pack 2009 2.5 Released!!
Rad Studio 2007/2009 의 IDE 버그를 패치하는 IDE Fix Pack 이 2.5 버전을 공개 하였다.

IDE Fix Pack 2009 2.5
Original Post : http://neodreamer-dev.tistory.com/265
- QC #47807: Error insight fails to find TObject class
- Possible deadlock when Error Insight calls ProcessMessages
- Error Insight defines VER190 instead of VER200
- QC #37462: IDE may select the wrong file when performing a ctrl + left-click on a filename in the editor
- QC #67351: Debugger invokes anonymous method by itself
- QC #22880: Cannot resolve unit name
- QC #58045: Component captions and component icons disappear from form designer
- QC #50278: IDE Compiler opens all files in ReadWrite mode and blocks command line compiler
- QC #69456: IDE dead lock when updating the editors
- QC #55910: TDBText.Color always reverts to Parent.Color
- QC #68647: Infinite loop in Forms.GetNonToolWindowPopupParent
- QC #68740: Lost focus after TOpenDialog when MainFormOnTaskBar is set
- QC #59963: Closing non-modal forms after a task switch can deactivate the application
- QC #66892: Closing forms deactivates the application (missing “stdcall”)
- QC #64484: SysUtils.Abort can raise an AccessViolation
- QC #56252: TPageControl flickers a lot with active theming
- QC #68730: TLabel is not painted on a themed, double-buffered TTabSheet in Vista
IDE Fix Pack 2009 2.5
Original Post : http://neodreamer-dev.tistory.com/265
Labels:
C++ Builder
,
CodeGear
,
Delphi
,
IDE Fix Pack
,
RAD Studio 2007
,
RAD Studio 2009
,
RAD Studio 2009 IDE Patch
,
TistoryOldPost
2008/11/20
CodeGear RAD Studio IDE Fix Pack 2009 1.0
얼마전 출시한 CodeGear 사의 RAD Studio 2009 의 IDE 버그를 수정하는 프로그램 이다.
곧 Prism 을 포함한 정식 RAD Studio 가 출시되면 해결될 문제들이기는 하겠지만....
출처 및 다운로드 : http://andy.jgknet.de/blog/?page_id=246
Original Post : http://neodreamer-dev.tistory.com/203
Labels:
CodeGear
,
RAD Studio 2009
,
RAD Studio 2009 IDE Patch
,
TistoryOldPost
2008/10/01
드디어 GExperts 1.33 Beta for Delphi 2009 가 공개되었다.
Delphi 와 C++ Builder 의 IDE Plugin 인 Gexperts 가 드디어 RAD Studio 2009 용 버전을 공개하였다. 비록 아직은 Beta버전 이지만 요긴하게 사용할 수 있을 것 같다.
Gexperts Official Website
Gexperts README.txt
Gexperts Download
Original Post : http://neodreamer-dev.tistory.com/176
2008/08/26
RAD Studio 2009 출시 (Delphi, C++ Builder 2009)
CodeGear 가 다시한번 일을 냈다.
차세대 개발툴인 Delphi 2009 와 C++ Builder 2009를 출시하였다.
이번 출시는 조금 늦은감이 있긴 하지만 Unicode를 지원하고 있다. 그리고 요즘 활성화 되어있는 PNG 형식의 이미지를 지원하고 CodeGear를 인수한 Embarcadero 의 ER/Studio를 통합하여 데이터베이스 응용프로그램을 보다 효과적으로 개발 할 수 있다.
출시 안내문에서 발췌한 이번 버전의 특징
- New Visual Component Library (VCL)
components including Microsoft Office style ribbon controls, Portable
Network Graphics (PNG) image support, dozens of new capabilities for
existing controls, and the ability to seamlessly build powerful UIs for
Windows XP and Vista desktop applications simultaneously. - Major
new language features including Delphi generics and anonymous methods,
and the first commercial IDE support for C++0x and Technical Report 1
(TR1) in the C++ language. - VCL for the Web for creating AJAX and Silverlight-enabled rich intranet and line of business web applications.
- Updated
built-in dbExpress support for CodeGear InterBase® and Blackfish™ SQL,
Oracle®, Microsoft SQL Server™ , Informix®, IBM® DB2®, SQL Anywhere®,
Sybase® and MySQL® databases.
CodeGear Office website
차세대 델파이 2009 및 C++빌더 2009 출시 안내문 (영어)
차세대 델파이 2009 및 C++빌더 2009 출시 안내문 (한글-볼랜드포럼의 임프님 번역)
What's new in Delphi 2009
Original Post : http://neodreamer-dev.tistory.com/148
Labels:
C++ Builder 2009
,
CodeGear
,
Delphi 2009
,
Embarcadero
,
RAD Studio 2009
,
TistoryOldPost
Subscribe to:
Posts
(
Atom
)