What is the comparative robustness of C++ Builder versions? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T08:39:22Z http://stackoverflow.com/feeds/question/122234 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/122234/what-is-the-comparative-robustness-of-c-builder-versions 3 What is the comparative robustness of C++ Builder versions? JV 2008-09-23T16:46:30Z 2009-06-25T23:20:12Z <p>Our development team work with Borland C++ Builder 6 and CodeGear C++ Builder 2007 (as well as Visual Studio). I hear a lot of comments that the Builder 2007 IDE crashes a lot more than BCB6 does. Does anyone out there have any experience of the C++ Builder 2009 IDE yet, particularly with a decent size application, and if so how does this compare with 6 or 2007 in terms of overall robustness?</p> http://stackoverflow.com/questions/122234/what-is-the-comparative-robustness-of-c-builder-versions/125954#125954 2 Answer by Otherside for What is the comparative robustness of C++ Builder versions? Otherside 2008-09-24T08:04:52Z 2008-09-24T08:04:52Z <p>I haven't used C++ Builder 2009 but maybe this will help you.</p> <p>According to Chris Pattinson (QA manager at CodeGear), they made over 4000 fixes in both Delphi and C++ Builder 2009 (See this blog: <a href="http://blogs.codegear.com/chrispattinson/2008/09/19/38897" rel="nofollow">http://blogs.codegear.com/chrispattinson/2008/09/19/38897</a>)</p> <p>He links to an article on cn.codegear.com which details all of the fixes for C++ Builder, see <a href="http://dn.codegear.com/article/38715" rel="nofollow">http://dn.codegear.com/article/38715</a></p> http://stackoverflow.com/questions/122234/what-is-the-comparative-robustness-of-c-builder-versions/152473#152473 4 Answer by Roddy for What is the comparative robustness of C++ Builder versions? Roddy 2008-09-30T10:08:23Z 2008-09-30T10:08:23Z <p>My experiences with BCB2009 so far have been mostly positive. the IDE seems stable and installs etc are much faster.</p> <p>However, I haven't yet moved a major project over to 2009, but I can almost guarantee you it will be non-trivial because of the Unicode changes. You will need to switch to new versions of any third-party libraries/components that you use, as well as sanity-checking all string use in your existing code. There are no 'best practice' guidelines for doing this yet, either.</p> <p>Of course, if you were not using the VCL, this wouldn't be a problem - but then, why would you use BCB...?</p>