active questions tagged codegear - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T09:08:52Z http://stackoverflow.com/feeds/tag/codegear http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/12685/what-is-needed-to-get-delphi-back-on-top 32 What is needed to get Delphi back on top? Jim McKeeth 2008-08-15T20:11:14Z 2009-12-18T12:14:30Z <p>Delphi 2009 is due in the next couple months, which is its 12th release since Turbo Pascal became Delphi in 1995. Despite continued innovation it has not returned to its level of popularity before the Inprise fiasco. </p> <p>Many developers with Delphi backgrounds are moving to C# and many Delphi legacy applications are being rewritten in C#, despite the fact Delphi supports .NET and in many cases the existing application could be ported without rewriting. </p> <p>Is it just a losing battle to compete against Microsoft's tools on their platform? Is there something Code Gear / Delphi can do now that they are under new management to regain market share? What can enthusiasts do to help?</p> <p>Why do you do Delphi programming? or Why are you <em>not</em> doing Delphi programming?</p> http://stackoverflow.com/questions/1925422/how-do-i-convert-systemwidestring-to-a-char-in-c-and-vice-versa 0 How do I convert System::WideString to a char* in C++ and vice versa? Seth 2009-12-17T23:55:51Z 2009-12-18T04:30:32Z <p>I have a situation where I need to compare a char* with a WideString. How do I convert the WideString to a char* in C++?</p> http://stackoverflow.com/questions/1911400/can-i-tell-borland-c-builder-to-copy-a-file-somewhere-else-after-it-is-built 0 Can I tell Borland C++ Builder to copy a file somewhere else after it is built? MrVimes 2009-12-16T00:08:53Z 2009-12-16T22:29:53Z <p>I have two computers. One is intended to be left 'free' for high-performance activities (such as playing games) The other is my 'all purpose' computer where I install all the apps I use for creating things, and so on.</p> <p>On the second computer I use Codegear C++ Builder to work on an app that I use on the first computer.</p> <p>If I have BCB compile to comp 1 it is hopeless. It becomes unresponsive. It compiles locally very quickly. So what I do is compile locally and then copy the exe to the other machine.</p> <p>Well, I'm all for streamlining processes, so I want a way to compile on PC2 and use on PC1 without any intermediate steps.</p> <p>So is it possible to have BCB do the compiling on PC2 and create a local exe file, then copy the file to PC 1?</p> http://stackoverflow.com/questions/1647440/vcl-multiple-inheritance 0 VCL multiple inheritance Georgie 2009-10-30T00:48:49Z 2009-11-04T01:44:58Z <p>Hi,</p> <p>I'm trying to develop a set of controls which all have a number of common behaviours with respect to sizing. I think that this is an instance where multiple inheritance is required (although am fully willing to accept any advice to the contrary). What I would like to do is basically a mixin pattern</p> <pre><code>class Sizable { ... public: ResizeMe(); ResetText(); ... }; class sizeButton : public Sizable, public TButton { ... }; class sizeEdit : public Sizable, public TEdit { ... }; </code></pre> <p>and so forth...</p> <p>I have written a non-trivial amount of sizing code in the Sizable class and tested it and it's nice, but now I have set out the rest of the structure (yes, I probably should have written a skeleton for the classes first) and have discovered that sadly:</p> <pre><code>[BCC32 Error] szButton.h(15): E2278 Multiple base classes not supported for VCL classes </code></pre> <p>I have pulled out all the functions which aren't required to be member functions (e.g. measuring the length of strings), but there are still a lot of functions where this is not possible. </p> <p>Does anyone have any design advice so that I don't have to duplicate a ton of code?</p> http://stackoverflow.com/questions/1640922/to-restrict-size-of-components-at-design-time-codegear-c-builder 1 To restrict size of components at design time: CodeGear C++ Builder Georgie 2009-10-29T00:06:35Z 2009-10-29T21:48:18Z <p>Hi, </p> <p>I am trying to inherit from TButton in order to provide some size aware capabilities, where the buttons are able to resize themselves and/or their font size (within certain constraints) to allow for changes in text</p> <p>e.g.</p> <p>| small | </p> <p><em>or</em></p> <p>|&nbsp;&nbsp; this is a really long&nbsp;&nbsp; |<br /> | sentence on a button |</p> <p>could happily be the same button on the same form, all I've done is reset the text and the button copes with the size change itself.</p> <p>I've implemented all the text measuring functions, and the functionality works <em>to a point</em>.</p> <p>what I have done is create new properties maxHeight, minHeight, defaultHeight and so forth for Width and Font.</p> <p>When the user changes the default height, my design time component will change and reflect this new default height.</p> <p>When the user uses the normal Height &amp; Width properties however (or drags the corner) I don't know how to tie them to the default height and width.</p> <p>I intercepted OnCanResize and created an event handler and tried to confirm that the new size is within the min max. If it's not, set to the min or max as required, but if within the boundaries then update. I am able to intercept runtime resize events, but not design time.</p> <p>If it is possible to intercept the design time resizes, does anyone know how? </p> <p>sorry if that's a bit long-winded, hope it makes sense!</p> http://stackoverflow.com/questions/139844/can-delphi-2009-be-installed-on-the-same-machine-as-delphi-2006-or-delphi-2007 9 Can Delphi 2009 be installed on the same machine as Delphi 2006 or Delphi 2007? Steve 2008-09-26T14:23:30Z 2009-10-20T14:02:42Z <p>Is there any conflict?</p> http://stackoverflow.com/questions/952402/region-equivalent-in-codegear-rad-studio-similar-way-to-group-code 6 #region equivalent in CodeGear RAD Studio? Similar way to group code? stevosaurus 2009-06-04T18:49:30Z 2009-09-21T04:53:35Z <p>I was wondering if there is an equivalent to Visual Studio's #regions in RAD Studio.</p> <p>We use CodeGear's delphi and c++builder IDEs where I work and I would love to be able to use something like regions. </p> <p>My coworkers and I have yet to find an equivalent way of grouping code... do you know of any?</p> <p>Thanks! </p> http://stackoverflow.com/questions/346492/why-werent-you-at-coderage-iii 3 Why Weren't You at CodeRage III? lkessler 2008-12-06T17:14:01Z 2009-09-17T22:44:30Z <p>Delphi is currently ranked as <a href="http://www.tiobe.com/index.php/content/paperinfo/tpci/index.html" rel="nofollow">the 10th most popular language (Dec 2008)</a> and has <a href="http://www.blaisepascal.eu/index.php?actie=advertprices/priceinform" rel="nofollow">approximately 1.75 million users worldwide</a>.</p> <p>So why were there so few people at <a href="http://conferences.codegear.com/coderage08" rel="nofollow">the CodeRage III virtual conference</a> put on last week by Embardero?</p> <p>I really enjoyed the sessions I was at, but many were attended by fewer than 100 people. Even Marco Cantu's talks only had about 220 attendees.</p> <p>I was personally very disappointed by the attendance, which I thought should have been in the thousands.</p> <p>Why weren't you there? </p> <p>What should the organizers do to get you there next year?</p> http://stackoverflow.com/questions/1387769/associate-file-extension-with-vcl-forms-application 0 Associate file extension with vcl forms application Seth 2009-09-07T06:07:50Z 2009-09-09T21:52:16Z <p>I would like to know the cleanest way of registering a file extension with my VCL Forms application so that when a data file associated with my program is double clicked, the VCL forms application is opened and the filename is passed to the application. I currently have the following code:</p> <pre><code>USEFORM("mainform.cpp", MainForm); WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int) { try { Splash = new TSplash(0); Splash-&gt;Show(); Splash-&gt;Update(); Application-&gt;Initialize(); Application-&gt;Title = "Example"; Application-&gt;HelpFile = ""; Application-&gt;CreateForm(__classid(TMainForm), &amp;MainForm); Application-&gt;Run(); delete Splash; } catch (Exception &amp;exception) { Application-&gt;ShowException(&amp;exception); } catch (...) { try { throw Exception(""); } catch (Exception &amp;exception) { Application-&gt;ShowException(&amp;exception); } } return 0; } </code></pre> <p>I would like the filename passed to the <em>mainform</em> so that the application can open it in the correct manner.</p> http://stackoverflow.com/questions/1377161/indenting-in-codegear 0 Indenting in Codegear Seth 2009-09-04T03:57:48Z 2009-09-04T04:01:01Z <p>Is there a way to indent/tab multiple lines in one action in the Codgear RAD Studio IDE? </p> <p>I.e. I would like to be able to highlight multiple lines and indent them all by one tab simultaneously.</p> http://stackoverflow.com/questions/1072085/codegear-rad-studio-c-go-to-definition-control-click 0 Codegear RAD Studio C++ Go to Definition - Control Click Nassign 2009-07-02T02:05:17Z 2009-08-17T04:46:50Z <p>I am using CodeGear RAD Studio C++, I know that to go to a definition of a variable or class you must press control and click on the method name, or any identifier where you want to go to a definition.</p> <p>However, as most of you would notice this does not work all the time.</p> <p>Does anyone have any trick on doing this?</p> http://stackoverflow.com/questions/1197148/how-do-i-use-the-registry-in-codegear-c-builder 2 How do I use the registry in codegear c++ builder? MrVimes 2009-07-28T22:38:58Z 2009-08-16T18:55:11Z <p>In the simplest possible terms (I'm an occasional programmer who lacks up-to-date detailed programming knowledge) can someone explain the simplest way to make use of the registry in codegear C++ (2007).</p> <p>I have a line of code in an old (OLD!) program I wrote which is causing a significant delay in startup...</p> <p>DLB->Directory=pIniFile->ReadString("Options","Last Directory","no key!");</p> <p>The code is making use of an ini file. I would like to be able to use the registry instead (to write variables such as the last directory the application was using)</p> <p>But the specifics are not important. I'd just like a generic how-to about using the registry that's specific to codegear c++ builder.</p> <p>I've googled this, but as usual with this type of thing I get lots of pages about c++ builder and a few pages about the windows registry, but no pages that explain how to use one with the other.</p> http://stackoverflow.com/questions/1204935/problem-with-idroptarget-when-using-with-a-vcl-form 0 Problem with IDropTarget when using with a VCL Form Seth 2009-07-30T07:14:55Z 2009-08-03T23:11:22Z <p>I have a VCL gui developed in Codegear. I have created a DropTarget for the mainform and the DropTarget object implements the IDropTarget interface which allows me to drag and drop files from explorer. Now because I only want some of the child components to be drop targets (not the whole form), I only have the DragEnter method return S_OK when the POINTL coordinates are within the bounds of the component.</p> <p>However, if I drag the item slowly into the bounds of the form but not the component, DragEnter returns E_NOINTERFACE, therefore not allowing a drop. If I continue to drag into the dropzone, DragEnter won't fire, I understand why it isn't firing. So my question is <strong>how can I manually fire the DragEnter event</strong>?</p> http://stackoverflow.com/questions/1091226/other-way-to-create-transaction-than-tbxtransactionbegintransaction 0 Other way to create transaction than TBXTransaction::BeginTransaction() Nassign 2009-07-07T09:15:20Z 2009-07-07T09:15:20Z <p>I am having a problem with my code. I get an intermittent error that the capacity/limit for the transaction is already reached.</p> <p>However, I already checked the BeginTransaction and CommitFreeAndNil call with my code and it does delete all transaction. I also checked my whole code and there are no other instance of the BeginTransaction.</p> <p>I even watched the FTransactionCount and it is just zero. So, I was wondering why can't I create a transaction at times.</p> 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/956727/why-is-codegear-cbuilder-failing-to-create-pre-compiled-headers 1 Why is CodeGear C++Builder failing to create pre-compiled headers? Scott Saad 2009-06-05T16:06:55Z 2009-06-24T21:09:16Z <h2>Problem</h2> <p>In CodeGear C++Builder 2009 we are using the pre-compiled header injection to greatly reduce our compile times. We have the same header file being injected into multiple projects. When compiling <em>some</em> projects, the compiler kicks out the following warning: </p> <pre><code>[BCC32 Warning] Dateutils.hpp(43): W8058 Cannot create pre-compiled header: initialized data in header </code></pre> <p>In this example, the <strong>Dateutils.hpp</strong> is the file it's complaining about (CodeGear's header). I've seen this happen with <strong>other headers</strong> as well. What makes this interesting is that this only happens with some projects (same header being injected).</p> <p>In the past, I've had to just find the header who ultimately included this errant file and remove it from my pre-compiled header file. Does anyone know what's going on here and the best way to fix it?</p> <h2>Update</h2> <p>I ended up performing a process of elimination approach to the header file and came up with an interesting finding that I cannot explain. Out of the 50+ headers that get included, when I removed <strong>vcl.h</strong> I no longer get the W8058 warnings. I do not understand this as I would imagine that this header file in particular is a prime candidate for pre-compiliation. Can anyone explain that? </p> http://stackoverflow.com/questions/152528/are-there-guidelines-for-updating-cbuilder-applications-for-cbuilder-2009 6 Are there guidelines for updating C++Builder applications for C++Builder 2009? Roddy 2008-09-30T10:34:21Z 2009-06-04T01:08:51Z <p>I have a range of Win32 VCL applications developed with C++Builder from BCB5 onwards, and want to port them to ECB2009 or whatever it's now called.</p> <p>Some of my applications use the old TNT/TMS unicode components, so I have a good mix of AnsiStrings and WideStrings throughout the code. The new version introduces UnicodeString, and a bunch of #defines that change the way functions like c_str behave.</p> <p>I want to modify my code in a way that is as backwards-compatible as possible, so that the same code base can still be compiled and run (in a non-unicode fashion) on BCB2007 if necessary.</p> <p>Particular areas of concern are:</p> <ul> <li>Passing strings to/from Win32 API functions</li> <li>Interop with TXMLDocument</li> <li>'Raw' strings used for RS232 comms, etc.</li> </ul> <p>Rather than knife-and-fork the changes, I'm looking for guidelines that I can apply to ease the migration, while keeping backwards compatibility wherever possible.</p> <p>If no such guidelines already exist, maybe we can formulate some here?</p> http://stackoverflow.com/questions/946316/what-happened-to-codegears-tbitbtn-and-tbutton-inheritence-chain 1 What happened to CodeGear's TBitBtn and TButton inheritence chain? Scott Saad 2009-06-03T18:15:36Z 2009-06-03T21:31:25Z <p>I've recently began to upgrade my RAD Studio 2007 project to RAD Studio 2009. One thing I noticed is when seemingly simple code all of a sudden failed to compile. </p> <p>Example Code:</p> <pre><code>class CButtonPopupMenu { // Snip public: void Init( TButton* SrcButton ) { SrcButton-&gt;OnClick = OnButtonClick; } private: void __fastcall OnButtonClick( TObject* Sender ) { // Do some button click stuff } }; // Snip TButton button = new TButton( this ); TBitBtn bitBtn = new TBitBtn( this ); CButtonPopupMenu popupButton = new CButtonPopupMenu( button ); CButtonPopupMenu popupBitBtn = new CButtonPopupMenu( bitBtn ); </code></pre> <p>This all use to compile, but with 2009 its failing. Looking at the inheritance chain for 2007 <strong>TBitBtn</strong> used to derive from <strong>TButton</strong>. Therefore, events that are expected on any button control (i.e. OnClick) were shared by the <strong>TButton</strong> class. Therefore, I was able to treat my <strong>TBitBtn</strong> class as a <strong>TButton</strong>. </p> <p><strong>2007 inheritance chain:</strong> </p> <ul> <li>TBitBtn : TButton</li> </ul> <p><strong>2009 inheritance chain:</strong> </p> <ul> <li>TBitBtn : TCustomButton</li> <li>TButton : TCustomButton</li> </ul> <p>In 2009, both <strong>TButton</strong> and <strong>TBitButton</strong> derive from <strong>TCustomButton</strong>, which would be fine I suppose if the button like attributes were held there. If this were the case, I could just change the code to deal with a <strong>TCustomButton</strong> instead. Unfortunately, <strong>TCustomButton</strong> does not hold things like <strong>OnClick</strong>. Therefore, I can no longer treat a <strong>TBitBtn</strong> like a <strong>TButton</strong>. Both of these classes, now have their own separate button like attributes (i.e. they both have their own OnClick event declared). I mean, at least provide an interface or something, like <strong>IButton</strong> that both <strong>TButton</strong> and <strong>TBitBtn</strong> implement.</p> <p>It seems that these types of seemingly innocent changes are the ones that can wreak unnecessary havoc. This seems odd and am wondering if anyone knows why CodeGear (or any Framework author for that matter) would do this type of thing?</p> <p>More importantly, given this fragmented inheritance, is there and <em>elegant</em> solution to treat a <strong>TBitBtn</strong> like a <strong>TButton</strong>?</p> http://stackoverflow.com/questions/898458/default-file-layout-in-codegear-c-builder-and-delphi 3 Default File Layout in Codegear C++ Builder (and Delphi) TommyA 2009-05-22T15:25:35Z 2009-05-22T21:05:16Z <p>I've had a major annoyance with the Borland/Codegear C++ Builder IDE for some time now. When I code I always use a standard layout for the code files. I have a standard header that I use, including, ie. the Licens of the file, filename, date, etc.</p> <p>But I haven't been able to find anywhere to insert this, so that when I - for instance - create a new unit, get this header inserted automatically. Of course I can just paste it in, every time, but it gets a bit irritating to use time doing this.</p> <p>So my question is - is it possible to create a file template for default C++ files or modify the existing ones so that they always start with my predefined layout. My fear is that just as with most other things in the C++ Builder IDE, this is hardcoded into it.</p> <p>Currently creating a new unit creates a .cpp file with:</p> <pre><code>//--------------------------------------------------------------------------- #pragma hdrstop #include "Unit1.h" //--------------------------------------------------------------------------- #pragma package(smart_init) </code></pre> <p>and a corresponding header file with:</p> <pre><code>//--------------------------------------------------------------------------- #ifndef Unit1H #define Unit1H //--------------------------------------------------------------------------- #endif </code></pre> <p>This is what I wish to alter to my own defined layout.</p> <p>I'm using Codegear C++ Builder 2007.</p> <p>Any help would be appreciated.</p> http://stackoverflow.com/questions/473720/why-is-the-destructor-ignored-in-this-c-code-turbo-c-explorer-borland-c 6 Why is the destructor ignored in this C++ code? (Turbo C++ Explorer, Borland C++ Builder 2006) Sebastian 2009-01-23T17:10:35Z 2009-05-05T15:50:22Z <p>The following code demonstrates a weird problem I have in a Turbo C++ Explorer project. One of the three stack objects in D::D() is not destroyed after going out of scope. </p> <p>This only happens if compiled in release mode, the auto_ptrs a_ and b_ are of different types and the exception thrown doesn't inherit from std::exception. It appears to work just fine in VC++ 2005 and C++ Builder 2009. I did install the BDS2006 Update 2, the hotfix rollup and hotfix 12.</p> <p>Is it my code or the compiler? Do you know of a fix? Not being able to reliably use auto_ptr in a VCL project would be quite inconvenient. </p> <p><br></p> <pre><code>#include &lt;memory&gt; #include &lt;stdexcept&gt; #include &lt;iostream&gt; typedef std::exception my_error; // will work fine if replaced with line below //class my_error : public std::exception {}; class A {}; class B {}; class C { public: C(int id) : id_(id) { std::cout &lt;&lt; "C::C() " &lt;&lt; id_ &lt;&lt; std::endl; }; ~C() { std::cout &lt;&lt; "C::~C() " &lt;&lt; id_ &lt;&lt; std::endl; }; private: int id_; }; class D { public: D() { C c1(1); C c2(2); C c3(3); throw my_error(); }; private: std::auto_ptr&lt;A&gt; a_; std::auto_ptr&lt;B&gt; b_; // will work fine if replaced with line below // std::auto_ptr&lt;A&gt; b_; // std::auto_ptr&lt;C&gt; c_; // see expected output }; #pragma argsused int main(int argc, char* argv[]) { try { D d; } catch (...) { std::cout &lt;&lt; "caught exception" &lt;&lt; std::endl; } return 0; } </code></pre> <p><br> Expected:</p> <pre> C::C() 1 C::C() 2 C::C() 3 C::~C() 3 C::~C() 2 C::~C() 1 caught exception </pre> <p><br> Got:</p> <pre> C::C() 1 C::C() 2 C::C() 3 C::~C() 2 C::~C() 1 caught exception </pre> <p><br> Got (with line '<code>// std::auto_ptr&lt;C&gt; c_;</code>' uncommented):</p> <pre> C::C() 1 C::C() 2 C::C() 3 C::~C() 1 caught exception </pre> <p><br> <strong>Edit:</strong> Made suggested changes <br><br> <strong>Edit 2:</strong><br> I just tested it with C++ Builder 2007 (11.0.2902.10471), which shows the same problem. The release configuration works as soon as I check the "Debug information" box in Project -> Options -> C++ Compiler -> Debugging. It surprises me that the executable gets smaller with "Debug information" enabled (down to 31.5 KB from 39.5 KB ). <br><br> <strong>Edit 3:</strong><br> In Turbo C++ Explorer (C++ Builder 2006) (10.0.2288.42451) the release configuration works if I uncheck the "Inline function expansion (-vi)" box in Project -> Options -> C++ Compiler -> Debugging. Replacing the first line (<code>#include &lt;memory&gt;</code>) with the following code makes it work, too. </p> <pre><code>#pragma option push -vi- #include &lt;memory&gt; #pragma option pop </code></pre> http://stackoverflow.com/questions/682892/how-to-open-bpr-projects-in-borland-codegear-c-buider-2009 0 how to open bpr projects in Borland Codegear C++ Buider 2009 ? markitus82 2009-03-25T18:34:16Z 2009-04-27T18:04:26Z <p>I'm trying to import the <a href="http://log4cpp.sourceforge.net/" rel="nofollow">log4cpp</a> project into Borland Codegear C++ Builder 2009 . The rar file of the project contains a <strong>bpr</strong> file which corresponds to a project. When trying to open it, an error popup window is shown, saying:</p> <pre><code>OLE error 80131040, ClassID: {F8FEDD39-E3CE-4B8D-A657-9CA24686881F} </code></pre> <p>I do not have idea of what's going on, and what I should do to make Codegear work and open the project. </p> <p>thanks for your help</p> http://stackoverflow.com/questions/686300/log4cpp-in-borland-codegear-2007 1 log4cpp in borland codegear 2007 markitus82 2009-03-26T15:34:32Z 2009-03-26T15:40:34Z <p>I'm trying to make work the library and run the tests provided with the latest version of log4cpp on Borland Codegear 2007, in which it's included a bpr project for Borland C++ Builder 5, which it's meant to be able to build and run the different tests. The problem is that i'm trying to open this project with the 2007 version, which has to carry out a project conversion. I was getting weird 'unresolved external' errors. Then I've tried to build the project myself without converting anything, but got stuck in the same point. </p> <p>I'm trying to run the following test :</p> <pre><code>#include &lt;stdio.h&gt; #include "log4cpp/Portability.hh" #ifdef LOG4CPP_HAVE_UNISTD_H #include &lt;unistd.h&gt; #endif #include &lt;iostream&gt; #include "log4cpp/Category.hh" #include "log4cpp/Appender.hh" #include "log4cpp/FileAppender.hh" #include "log4cpp/OstreamAppender.hh" #ifdef LOG4CPP_HAVE_SYSLOG #include "log4cpp/SyslogAppender.hh" #endif #include "log4cpp/Layout.hh" #include "log4cpp/BasicLayout.hh" #include "log4cpp/Priority.hh" #include "log4cpp/NDC.hh" int main(int argc, char** argv) { log4cpp::Appender* appender; #ifdef LOG4CPP_HAVE_SYSLOG log4cpp::SyslogAppender* syslogAppender; syslogAppender = new log4cpp::SyslogAppender("syslog", "log4cpp"); #else log4cpp::Appender* syslogAppender; syslogAppender = new log4cpp::OstreamAppender("syslogdummy", &amp;std::cout); #endif if (argc &lt; 2) { appender = new log4cpp::OstreamAppender("default", &amp;std::cout); } else { appender = new log4cpp::FileAppender("default", argv[1]); } syslogAppender-&gt;setLayout(new log4cpp::BasicLayout()); appender-&gt;setLayout(new log4cpp::BasicLayout()); log4cpp::Category&amp; root = log4cpp::Category::getRoot(); root.addAppender(syslogAppender); root.setPriority(log4cpp::Priority::ERROR); log4cpp::Category&amp; sub1 = log4cpp::Category::getInstance(std::string("sub1")); sub1.addAppender(appender); log4cpp::Category&amp; sub2 = log4cpp::Category::getInstance(std::string("sub1.sub2")); log4cpp::NDC::push(std::string("ndc1")); std::cout &lt;&lt; " root prio = " &lt;&lt; root.getPriority() &lt;&lt; std::endl; std::cout &lt;&lt; " sub1 prio = " &lt;&lt; sub1.getPriority() &lt;&lt; std::endl; std::cout &lt;&lt; " sub2 prio = " &lt;&lt; sub2.getPriority() &lt;&lt; std::endl; root.error("root error"); root.warn("root warn"); sub1.error("sub1 error"); sub1.warn("sub1 warn"); sub2.error("sub2 error"); sub2.warn("sub2 warn"); sub1.setPriority(log4cpp::Priority::INFO); std::cout &lt;&lt; " root prio = " &lt;&lt; root.getPriority() &lt;&lt; std::endl; std::cout &lt;&lt; " sub1 prio = " &lt;&lt; sub1.getPriority() &lt;&lt; std::endl; std::cout &lt;&lt; " sub2 prio = " &lt;&lt; sub2.getPriority() &lt;&lt; std::endl; std::cout &lt;&lt; "priority info" &lt;&lt; std::endl; root.error("root error"); root.warn("root warn"); sub1.error("sub1 error"); sub1.warn("sub1 warn"); sub2.error("sub2 error"); sub2.warn("sub2 warn"); sub2.warnStream() &lt;&lt; "streamed warn"; sub2 &lt;&lt; log4cpp::Priority::WARN &lt;&lt; "warn2" &lt;&lt; " warn3" &lt;&lt; log4cpp::eol &lt;&lt; " warn4"; { for(int i = 0; i &lt; 10000; i++) { char ndc2[20]; sprintf(ndc2, "i=%d", i); log4cpp::NDC::push(ndc2); sub1.info("%s%d", "i = ", i); if ((i % 10) == 0) { sub1.log(log4cpp::Priority::NOTICE, "reopen log"); if (log4cpp::Appender::reopenAll()) { sub1.info("log reopened"); } else { sub1.warn("could not reopen log"); } } #ifndef WIN32 sleep(1); #endif log4cpp::NDC::pop(); } } return 0; } </code></pre> <p>The errors are all about 'unresolved external', such as:</p> <pre><code>[ILINK32 Error] Error: Unresolved external 'log4cpp::Category::warn(const char *, ...)' referenced from C:\DOCUMENTS AND SETTINGS\MLERMA\MIS DOCUMENTOS\RAD STUDIO\PROJECTS\DEBUG\TESTMAIN.OBJ </code></pre> <p>I'm getting this kind of error for every single call to a log4cpp function, all referring to TESTMAIN.OBJ . </p> <p>Any ideas on this? is there anyone out there who has worked with log4cpp on Borland ?</p> <p>thanks in advance!</p> http://stackoverflow.com/questions/557414/how-to-write-files-with-readable-utf8-characters-in-c 0 How to write files with (readable) UTF8 characters in C? Nek 2009-02-17T15:39:00Z 2009-02-17T15:55:53Z <p>I read a file that has utf8 characters like this:</p> <pre><code>FILE *FileIN,*FileOUT; FileIN=fopen("filename","r"); char string[600]; WideChar C[600],S[100]; fgets(string,600,FileIN); wcscpy(C,UTF8Decode(string).c_bstr()); // widechar copy </code></pre> <p>And it reads it perfectly (this is shown in the Editbox when running the program):</p> <pre><code>Edit1-&gt;Text=C; Result ===&gt; "3021";"亜";"7";"ア アシア つ.ぐ T1 や つぎ つぐ" </code></pre> <p>The thing is that when I want to write this on a file:</p> <pre><code>FileOUT=fopen("txt.txt","w"); fwrite(Edit8-&gt;Text.c_str(),strlen(Edit8-&gt;Text.c_str()),1,FileOUT); Result ===&gt; "3021";"?";"7";"? ??? ?.? T1 ? ?? ??" </code></pre> <p>The question is, how do I write the result (the one i can see in the program running) in a file?</p> <p>I use C language on CodeGear C++Builder </p> <p><strong>Resolved</strong> thanks to Christoph and nobugz for the help</p> <p>I changed this line</p> <pre><code>fwrite(Edit8-&gt;Text.c_str(),strlen(Edit8-&gt;Text.c_str()),1,FileOUT); </code></pre> <p>to this one and it worked. Thanks</p> <pre><code>fwrite(UTF8Encode(Edit8-&gt;Text).c_str(),UTF8Encode(Edit8-&gt;Text).Length(),1,FileOUT); </code></pre> http://stackoverflow.com/questions/501797/nunit-crashes-when-cc3270mt-dll-is-loaded 0 NUnit crashes when cc3270mt.dll is loaded wcoenen 2009-02-01T23:02:46Z 2009-02-02T01:27:23Z <p>I have a problem where NUnit Assert.IsTrue crashes with an "access denied" (0xc0000005) access violation. Since managed applications are not supposed to cause such errors, I started looking at any unmanaged code loaded by the NUnit tests. And sure enough, after a process of elimination the simplest way to reproduce the problem turned out to be this:</p> <pre><code>using System; using System.Runtime.InteropServices; using NUnit.Framework; namespace test { class Program { [DllImport("kernel32.dll")] static extern IntPtr LoadLibrary(string library); static void Main(string[] args) { var result = LoadLibrary("cc3270mt.dll"); Console.WriteLine(result == IntPtr.Zero ? "loadlibrary failed" : "loadlibrary ok"); Assert.IsTrue(true); Console.WriteLine("test end"); } } } </code></pre> <p>This program will print "loadlibrary ok" and will then crash on the Assert.IsTrue with this on the VS2008 output console:</p> <blockquote> <p>The program '[2540] test.vshost.exe: Managed' has exited with code -1073741819 (0xc0000005).</p> </blockquote> <p>cc3270mt.dll (version 7.0.0.4) is a redistributable dependency of any applications or modules built with borland developer studio 2006. What's going on here? Are borland libraries unable to coexist with the .NET runtime in the same process?</p> http://stackoverflow.com/questions/456504/get-path-and-filename-of-all-files-in-a-given-dir-and-its-subdirs-using-c-buil 0 get path and filename of all files in a given dir and its subdirs using c++ (builder) MrVimes 2009-01-19T04:06:44Z 2009-01-19T04:32:05Z <p>I was given this code a while back. I finally got around to testing it (with some changes to put the files in a different place)...</p> <pre><code>void AddFiles(AnsiString path/*, TDataSet *DataSet*/) { TSearchRec sr; int f; f = FindFirst(path+"\\*.*", faAnyFile, sr); while( !f ) { if(sr.Attr &amp; faDirectory) { if(sr.Name != "." &amp;&amp; sr.Name != "..") { path.sprintf("%s%s%s", path, "\\", sr.Name); AddFiles(path/*, DataSet*/); } } else { Form1-&gt;ListBox1-&gt;Items-&gt;Add(path+ "\\"+ sr.Name); //DataSet-&gt;Append(); //DataSet-&gt;FieldByName("Name")-&gt;Value = sr.Name; /* other fields ... */ //DataSet-&gt;Post(); } f = FindNext(sr); } FindClose(sr); } </code></pre> <p>It doesn't work properly. In the beginning it gets mixed up..</p> <p>a real structure of...</p> <p>root root\subdir1 root\subdir2 root\subdir3</p> <p>gets messed up like this...</p> <p>root root\subdir1 root\subdir1\subdir2 root\subdir1\subdir2\subdir3</p> <p>and eventually it stops including the root or sub\sub folders and 'path' just contains a subfolder (without its root folders)</p> <p>this is completely useless for aquring useable full-path filenames.</p> <p>so <strong>either</strong> can you tell me where the code is going wrong... <strong>or</strong> give me some advice on how to get the full path filenames in a dir and all its subdirs.</p> <p>I want it to be as basic as possible. i.e. no uncommon advanced c++ features. stuff that a builder noob is likely to be able to debug.</p> http://stackoverflow.com/questions/307759/is-there-any-way-to-restrict-how-many-item-returned-by-codecentral-web-service 1 Is there any way to restrict how many item returned by CodeCentral Web Service Zamrony P Juhara 2008-11-21T03:37:59Z 2008-11-21T05:53:05Z <p>I am building web client for CodeCentral web service from CodeGear web site.</p> <p>I need to restrict number of items return by Search operation of CodeGear web service, say it, 10 per page. This way I can minimize loading of my web page.</p> <p>I just don't know how to do it. Any ideas?</p> http://stackoverflow.com/questions/281561/codegear-delphi-2007-vi-vim-key-mapping 2 CodeGear Delphi 2007 VI/VIM Key Mapping D-Ven 2008-11-11T17:25:45Z 2008-11-11T21:03:17Z <p>After reading <em>The Pragmatic Programmer</em>, I became quite accustomed to VIM. When in Visual Studio I have ViEmu (<a href="http://www.viemu.com/" rel="nofollow">http://www.viemu.com/</a>) to provide me with VIM functionality. </p> <p>Is anyone aware of a similar program/key binding/workaround to integrate VI/VIM key bindings in CodeGear Delphi 2007?</p> http://stackoverflow.com/questions/97927/codegear-rad-studio-help-system-is-corrupted 0 Codegear RAD Studio help system is corrupted Code Penguin 2008-09-18T23:15:15Z 2008-09-19T00:45:12Z <p>I've been using <strong>Codegear RAD Studio</strong> for a over a year now but since the <strong>"May08 Help Update"</strong> the help system no longer works. If I open the help the contents pane is entirely blank. If I hit F1 I get the following error: <strong>"Unable to interpret the specified HxC file."</strong> </p> <p>I've searched for the answer using search engines and the Codegear forums but so far nothing seems to fix the problem. I'd rather not do a full reinstall if possible. Has anyone else experienced this issue and know how to fix it?</p>