User Serge - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T01:19:05Zhttp://stackoverflow.com/feeds/user/1007http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1727804/how-can-i-get-a-volume-serial-number-using-wxwidgets0How can I get a volume serial number using wxWidgets?Serge2009-11-13T08:05:18Z2009-12-02T10:05:51Z
<p>Hi, I'm looking for a function/class in wxWidgets which can give me a volume serial number (like win32 <a href="http://msdn.microsoft.com/en-us/library/aa364993%28VS.85%29.aspx" rel="nofollow">GetVolumeInformation</a> function does). </p>
<p>I assume that the volume serial number must be pretty much cross-platform.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1781970/multiplying-a-tuple-by-a-scalar/1781991#17819911Answer by Serge for Multiplying a tuple by a scalarSerge2009-11-23T09:24:01Z2009-11-23T09:24:01Z<p>You can try something like this:</p>
<pre><code>print [10 * s for s in img.size]
</code></pre>
<p>It will give you a new list with all the elements you have in the tuple multiplied by 10</p>
http://stackoverflow.com/questions/7737/how-to-display-unicode-text-in-opengl3How to display unicode text in OpenGL?Serge2008-08-11T12:50:43Z2009-11-18T17:16:21Z
<p>Is there a good way for displaying unicode text in opengl under Windows? For example, when you have to deal with different languages. The most common approach like</p>
<pre><code>#define FONTLISTRANGE 128
GLuint list;
list = glGenLists(FONTLISTRANGE);
wglUseFontBitmapsW(hDC, 0, FONTLISTRANGE, list);
</code></pre>
<p>just won't do because you can't create enough lists for all unicode characters.</p>
http://stackoverflow.com/questions/1707558/can-python-remove-double-quotes-from-a-string/1707603#17076030Answer by Serge for Can Python remove double quotes from a string?Serge2009-11-10T12:27:30Z2009-11-10T12:27:30Z<p>You can use regexp, try something like this</p>
<pre><code>import re
re.findall("[0-9.]+", file(name).read())
</code></pre>
<p>This will give you a list of all numbers in your file as strings without any quotes.</p>
http://stackoverflow.com/questions/1496158/convert-double-to-string-with-fixed-width/1496665#14966650Answer by Serge for Convert double to String with fixed widthSerge2009-09-30T07:54:17Z2009-09-30T08:00:46Z<p>You can use <a href="http://www.cppreference.com/wiki/io/width" rel="nofollow">osteram::width</a> and <a href="http://www.cppreference.com/wiki/io/precision" rel="nofollow">ostream::precision</a> function to achieve your goal, like this</p>
<pre><code>std::ostringstream out;
out.width(10);
out.precision(10);
out << 123.12345678910111213;
</code></pre>
<p>Although it won't add zeros after the point in order to respect width but it will add spaces (or any character of you choise) before the number. So You'll get ' 102' or '0000000102' (if you call out.fill('0');) instead of '102.000000' if you pass 102 as a input value.</p>
http://stackoverflow.com/questions/1426093/set-vector-type-at-runtime/1426130#14261302Answer by Serge for Set vector type at runtime.Serge2009-09-15T09:28:47Z2009-09-15T11:06:58Z<p>I'm not sure why do you need that but I suggest you to try to use a vector of union to solve your problem, something like this</p>
<pre><code>union DataType
{
int intVal;
unsigned uintVal;
}
std::vector<DataType> vec;
</code></pre>
<p>Or probably more elegant way is to use <a href="http://www.boost.org/doc/libs/1%5F40%5F0/doc/html/variant.html" rel="nofollow">boost::variant</a> instead of the union. Maybe if you give us more details about your problem you get a much better asnwer.</p>
<p>Good luck!</p>
http://stackoverflow.com/questions/45627/how-do-you-detect-avoid-memory-leaks-in-your-unmanaged-code/45652#456523Answer by Serge for How do you detect/avoid Memory leaks in your (Unmanaged) code?Serge2008-09-05T12:28:12Z2009-08-28T14:44:13Z<p>Microsoft VC++ in debug mode shows memory leaks, although it doesn't show where your leaks are.</p>
<p>If you are using C++ you can you can always avoid using new explicitly: you have vector, string, auto<code>_</code>ptr and shared<code>_</code>ptr in your arsenal.</p>
<p>When new is unavoidable, try to hide it in a constructor (and hide delete in a destructor); the same works for 3rd party APIs.</p>
http://stackoverflow.com/questions/1333522/why-does-the-code-crash/1333537#13335372Answer by Serge for Why does the code crash?Serge2009-08-26T09:48:29Z2009-08-27T08:18:12Z<p>Your should <strong>NEVER</strong> throw an exception in destructor. Take a look at <a href="http://stackoverflow.com/questions/130117/throwing-exceptions-out-of-a-destructor">this question</a> why.</p>
http://stackoverflow.com/questions/1332806/window-through-win32-api-menu-creation-in-vc/1332994#13329940Answer by Serge for window through Win32 API (menu creation) in VC++Serge2009-08-26T07:43:51Z2009-08-26T07:43:51Z<p>I don't know which errors you've got but I when I tried to compile your code I had only one error about type conversion </p>
<pre><code>wc.hIconSm = LoadImage(hInstance, lpszAppName,
IMAGE_ICON, 16, 16,
LR_DEFAULTCOLOR );
</code></pre>
<p>Also, I've noticed that you pass wrong second argument to <a href="http://msdn.microsoft.com/en-us/library/ms645452%28VS.85%29.aspx" rel="nofollow">DialogBox</a> function. It expects a resource identifier of your dialog box converted to a LPCTSTR via <a href="http://msdn.microsoft.com/en-us/library/ms648029%28VS.85%29.aspx" rel="nofollow">MAKEINTRESOURCE</a>. So your should add something like this </p>
<pre><code>IDD_ABOUTBOX DIALOG DISCARDABLE 34, 22, 217, 55
STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU
CAPTION "About ..."
FONT 8, "MS Sans Serif"
BEGIN
LTEXT "About me",1000,40,10,76,8
DEFPUSHBUTTON "OK",IDOK,176,6,32,14,WS_GROUP
END
</code></pre>
<p>into your generic.rc file.</p>
<p>Hope this helps. Although it would be much better if you were more clear about your problem. And I suggest you study a bit <a href="http://msdn.microsoft.com/en-us/library/ms632595%28VS.85%29.aspx" rel="nofollow">MSDN windows programming section</a> if you're about to do some GUI programming or at least let Visual Studio Wizard generate a simple win32 project for you and than study it.</p>
http://stackoverflow.com/questions/43587/tips-for-a-lone-developer-not-a-lonely-developer/43627#436275Answer by Serge for Tips for a lone developer (not a lonely developer)Serge2008-09-04T12:27:53Z2009-08-21T11:23:10Z<p>I've been working in a similar way for the last two years. Here are my advices:</p>
<ul>
<li>Blogs and books are good mentors.</li>
<li>Try to join local programming community to share thoughts, ask advices etc.</li>
<li>If you don't know whether your solution for a particular problem is good, try to find some open source projects which deal with similar problem and compare their solutions.</li>
<li>Check <a href="http://programming.reddit.com/" rel="nofollow">reddit</a> or similar sites to be up to date.</li>
</ul>
<p>And yes, it's very bad when there is no one to review your code and save you from a stupid mistake... but on the bright side you'll learn how to make right decisions and what it means to be responsible for a project.</p>
<p>And now you have stackoverflow! Good luck!</p>
http://stackoverflow.com/questions/1271513/c-code-visualization/1271758#12717581Answer by Serge for C++ code visualizationSerge2009-08-13T12:48:41Z2009-08-13T12:48:41Z<p>You can try <a href="http://www.cppdepend.com/" rel="nofollow">CppDepend</a>, it doesn't create a class hierarchy like Doxygen does but it can show 'the big picture' for your project, it also shows some code metrics.</p>
http://stackoverflow.com/questions/1142643/how-do-use-a-stdautoptr-in-a-class-you-have-to-copy-construct/1142785#11427851Answer by Serge for How do use a std::auto_ptr in a class you have to copy construct?Serge2009-07-17T11:48:20Z2009-07-17T11:48:20Z<p>The <code>std::auto_ptr</code> is a good tool for managing dynamic object in C++ but in order to use it effectivelly it's important to unserstand how auto_ptr works. <a href="http://www.gotw.ca/publications/using%5Fauto%5Fptr%5Feffectively.htm" rel="nofollow">This article</a> explains why, when and where this smart pointer should be used.</p>
<p>In your case, first of all your should decide what you want to do with the object inside your auto_ptr. Should it be cloned or shared? </p>
<p>If it should be cloned, make sure it has a copy constructor and then your create a new auto_ptr which contains a copy of your the object see <em>Adam Badura</em>'s answer.</p>
<p>If it should shared, you should use <a href="http://www.boost.org/doc/libs/1%5F39%5F0/libs/smart%5Fptr/shared%5Fptr.htm" rel="nofollow">boost::shared_ptr</a> as <em>Martin Liversage</em> suggested.</p>
http://stackoverflow.com/questions/1136359/how-to-force-stdstringstream-operator-to-read-an-entire-string/1136391#11363912Answer by Serge for How to force std::stringstream operator >> to read an entire string?Serge2009-07-16T09:19:57Z2009-07-16T09:34:04Z<p>Where do you want it to stop? If you want to read a whole line you probably need <a href="http://www.cppreference.com/wiki/string/getline" rel="nofollow">getline</a> function, if you need an entire string stored in the streamstring object your choise is <a href="http://www.cppreference.com/wiki/io/sstream/str" rel="nofollow">ostringstream::str</a> method.</p>
http://stackoverflow.com/questions/1130910/what-is-in-your-emacs-file/1130935#11309352Answer by Serge for What is in your .emacs file?Serge2009-07-15T11:52:34Z2009-07-15T11:52:34Z<p>I suggest <a href="http://steve.yegge.googlepages.com/my-dot-emacs-file" rel="nofollow">Steve Yegge's .emacs</a> file with <a href="http://steve.yegge.googlepages.com/effective-emacs" rel="nofollow">his emacs article</a>.</p>
http://stackoverflow.com/questions/8921/how-can-you-tell-whether-youre-ready-to-start-your-own-blog46How can you tell whether you're ready to start your own blog?Serge2008-08-12T14:54:42Z2009-06-14T13:35:59Z
<p>Hi, I'm curious whether I should start my own blog or not. </p>
<p>I've been working as a programmer for 3 years and have some good and bad experience I can share. On the other hand I'm not sure I will be able to post very often (maybe even less then one time per week).</p>
<p>They say writing a blog will improve your writing skill and it seems appealing to me. I've to admit sometimes I've a problem to write down my ideas in a short clear way so people can understand them easily. But I don't want to write for the sake of writing. I think that blog helps me only if there will be some readers and therefore some comments. In order to have readers I've to put some interesting stuff there pretty regularly, haven't I?</p>
<p>So how can you tell when it's time for one to start blogging?</p>
http://stackoverflow.com/questions/992469/reading-data-from-files-file-name-as-input/992515#9925150Answer by Serge for reading data from files, file name as inputSerge2009-06-14T09:28:42Z2009-06-14T09:28:42Z<p>Neil Butterworth is right </p>
<blockquote>
<p>Never use the eof() function!</p>
</blockquote>
<p><a href="http://www.cppreference.com/wiki/io/eof" rel="nofollow">This link</a> explains why.</p>
http://stackoverflow.com/questions/992471/how-to-query-iftint-with-template-class/992489#9924890Answer by Serge for how to query if(T==int) with template classSerge2009-06-14T09:10:23Z2009-06-14T09:10:23Z<p>C++ templates don't work this way. The general idea of templates is express somethings which is common for a lot of different types. And in your case you should use template specialization.</p>
<pre><code>template<class T> ostream& operator<< (ostream& out, const vector<T>& v)
{
// your general code for all type
}
// specialized template
template<> ostream& operator<< <int>(ostream& out, const vector<int>& vec)
{
// your specific to iny type code goes here
}
</code></pre>
<p>Then C++ compiler will call this function when you use int type and general implementation for any other type</p>
<pre><code>std::vector<int> f(5, 5);
std::cout << f;
</code></pre>
http://stackoverflow.com/questions/969699/low-machine-level-blogs/969762#9697621Answer by Serge for "Low [Machine] Level" BlogsSerge2009-06-09T12:23:36Z2009-06-09T12:23:36Z<p>Although this isn't exactly what you're a looking for but it contains <a href="http://www.airs.com/blog/archives/38" rel="nofollow">a bunch of nice posts</a> about C++ linker developement. There you'll find </p>
<blockquote>
<p>how a .dll loads, how to process links to a .dll, and how a loader maps DLLs into a Process Address Space,</p>
</blockquote>
http://stackoverflow.com/questions/914460/vector-of-pointers-template-clearing-function-fails-to-compile-with-undefined-re/914524#9145240Answer by Serge for Vector of pointers template clearing function fails to compile with "undefined reference" messageSerge2009-05-27T08:09:12Z2009-05-27T08:09:12Z<p>Make sure you have this function in a header file (.h, *.hpp) because if you defined it in a source file with a prototype in a header file you'll got an undefined reference linker error. </p>
<p>Undefined reference error means that compiler has found the reference of the function but linker has failed to find an reference of that function amongst object files. Any template function has to be defined in a header file so the compiler will be able to put it in any source file which makes use of the function.</p>
http://stackoverflow.com/questions/43322/whats-safe-for-a-c-plug-in-system/43325#433256Answer by Serge for What's safe for a C++ plug-in system?Serge2008-09-04T08:11:53Z2009-04-05T14:19:52Z<p><a href="http://www.ddj.com/cpp/204202899?cid=RSSfeed%5FDDJ%5FCpp" rel="nofollow">Here</a> is a pretty good reading on the subject. It is a series of articles which covers the architecture, development, and deployment of a C/C++ cross-platform plugin framework.</p>
<p>Hope it helps!</p>
http://stackoverflow.com/questions/152016/detecting-cpu-architecture-compile-time/152067#15206711Answer by Serge for Detecting CPU architecture compile-timeSerge2008-09-30T07:24:23Z2009-03-30T21:00:01Z<p>Here is some information about <a href="http://predef.sourceforge.net/prearch.html" rel="nofollow">Pre-defined Architecture Macros</a> and other types of pre-defined macros.</p>
http://stackoverflow.com/questions/696321/best-logging-framework-for-native-c/696880#6968804Answer by Serge for Best logging framework for native C++?Serge2009-03-30T11:42:39Z2009-03-30T11:42:39Z<p>You can take a look at this <a href="http://www.ddj.com/cpp/201804215" rel="nofollow">article</a>, it discribes a simple, typesafe, threadsafe, portable logging mechanism.</p>
http://stackoverflow.com/questions/429632/how-to-speed-up-floating-point-to-integer-number-conversion5How to speed up floating-point to integer number conversion?Serge2009-01-09T20:38:19Z2009-03-16T13:03:15Z
<p>We're doing a great deal of floating-point to integer number conversions in our project. Basically, something like this</p>
<pre><code>for(int i = 0; i < HUGE_NUMBER; i++)
int_array[i] = float_array[i];
</code></pre>
<p>The default C function which performs the conversion turns out to be quite time consuming.</p>
<p>Is there any work around (maybe a hand tuned function) which can speed up the process a little bit? We don't care much about a precision. </p>
http://stackoverflow.com/questions/622440/emacs-command-to-insert-and-indent-line-above-cursor/625528#6255280Answer by Serge for emacs command to insert and indent line above cursorSerge2009-03-09T09:20:44Z2009-03-12T13:43:13Z<p>Here's my humble solution:</p>
<p><code><pre>
(defun insert-before-line ()
(interactive)
(let ((pos (point))
(cur-max (point-max)))
(beginning-of-line)
; I've changed the order of (yank) and (indent-according-to-mode)
; in order to handle the case when yanked line comes with its own indent
(yank)(indent-according-to-mode)
; could be as well changed to simple (newline) it's metter of taste
; and of usage
(newline-and-indent)
(goto-char (+ pos (- (point-max) cur-max)))))
</pre></code></p>
<p>Hope it helps.</p>
http://stackoverflow.com/questions/618403/what-is-the-best-ide-for-c-development-why-use-emacs-over-an-ide/618426#6184266Answer by Serge for What is the best IDE for C Development / Why use Emacs over an IDE?Serge2009-03-06T10:51:07Z2009-03-06T10:51:07Z<p>You can take a look at these questions</p>
<p><a href="http://stackoverflow.com/questions/535369/what-is-the-best-free-windows-c-ide-compiler">what is the best free windows c++ IDE/compiler</a></p>
<p><a href="http://stackoverflow.com/questions/93326/which-ide-is-best-for-c">Which IDE is best for C++ ?</a></p>
<p><a href="http://stackoverflow.com/questions/24109/c-ide-for-linux">C++ IDE for linux</a></p>
<p>They all about IDE for C++ but I suppose we could regard an IDE for C as a subset of IDE for C++.</p>
http://stackoverflow.com/questions/10880/any-good-advice-on-using-emacs-for-c-project4Any good advice on using emacs for C++ project?Serge2008-08-14T10:42:59Z2009-02-15T03:32:48Z
<p>Hi. I'm looking for a good article on using emacs as C/C++ IDE.</p>
<p>Something like Steve Yegge's <a href="http://steve.yegge.googlepages.com/effective-emacs" rel="nofollow">"Effective emacs"</a>.</p>
http://stackoverflow.com/questions/508874/how-to-remap-keys-when-in-emacs/512295#5122951Answer by Serge for How to remap keys when in EmacsSerge2009-02-04T17:07:15Z2009-02-04T17:07:15Z<p>Maybe <a href="http://emacs-fu.blogspot.com/2008/12/remapping-caps-lock.html" rel="nofollow">this</a> helps. There is also a solution for windows without messing up with register.</p>
http://stackoverflow.com/questions/479332/how-to-get-size-and-position-of-window-caption-buttons-minimise-restore-close/479354#4793540Answer by Serge for How to get size and position of window caption buttons (minimise, restore, close)Serge2009-01-26T10:29:39Z2009-01-26T12:05:57Z<p><a href="http://msdn.microsoft.com/en-us/library/ms724385.aspx" rel="nofollow">GetSystemMetrics</a> function should help you with a size (SM_CYSIZE and SM_CXSIZE parameters).</p>
<p><strong>EDIT</strong></p>
<p>I'm not sure you can find positions with this function but you might take a look at <a href="http://www.emule-project.net/home/perl/general.cgi?l=13&rm=download" rel="nofollow">emule source code</a>, they've managed to add a button to a window caption.</p>
http://stackoverflow.com/questions/479312/product-to-decrease-c-compile-time/479345#4793455Answer by Serge for product to decrease c++ compile time?Serge2009-01-26T10:25:24Z2009-01-26T10:25:24Z<p>Usage of <a href="http://msdn.microsoft.com/en-us/library/9d87zb00(VS.71).aspx" rel="nofollow">precompiled headers</a> might decrease your compile time.</p>
http://stackoverflow.com/questions/472530/how-to-pass-an-array-size-as-a-template-with-template-type/473020#4730201Answer by Serge for How to pass an array size as a template with template type?Serge2009-01-23T14:15:23Z2009-01-23T14:15:23Z<p>Well the first example compiles just fine with Microsoft compiler (2005). </p>
<p>Digital Mars complains about </p>
<blockquote>
<p>"Error: integral expression expected"</p>
</blockquote>
<p>in line </p>
<pre><code>void f(TSize (& array)[N]) {
</code></pre>
<p>Can you give an example where you absolutly have to use this first version? </p>
http://stackoverflow.com/questions/1142643/how-do-use-a-stdautoptr-in-a-class-you-have-to-copy-construct/1142673#1142673Comment by Serge on How do use a std::auto_ptr in a class you have to copy construct?Serge2009-07-17T11:31:20Z2009-07-17T11:31:20Z_c(rhs._c.get()) - just won't work because at the end you'll have two auto_ptr objects which point to the same memory and eventually they both will try to delete it.http://stackoverflow.com/questions/429632/how-to-speed-up-floating-point-to-integer-number-conversionComment by Serge on How to speed up floating-point to integer number conversion?Serge2009-03-16T09:20:49Z2009-03-16T09:20:49Z@akauppi: I didn't mean to creat a duplicate, but when I was about to ask the question I spend a while looking for similar ones didn't find any if I would I'd have never asked this one. What can I say SO search does suck...http://stackoverflow.com/questions/622440/emacs-command-to-insert-and-indent-line-above-cursor/625528#625528Comment by Serge on emacs command to insert and indent line above cursorSerge2009-03-12T13:47:22Z2009-03-12T13:47:22Z@aaronhawley - why 'save-excursion'? I don't change mark I handle properly point, and the above code will hardly provoke a crush of the buffer. Can you be more specific about "when the text isn't at the end of the buffer" case, it does the same thing whenever point is at the moment of invokationhttp://stackoverflow.com/questions/634087/stdcopy-to-stdcout-for-stdpair/634105#634105Comment by Serge on std::copy to std::cout for std::pairSerge2009-03-11T14:31:33Z2009-03-11T14:31:33Z@TrayMan, I wasn't quite right about 'operator=', see 'Note' here <a href="http://www.sgi.com/tech/stl/ostream_iterator.html" rel="nofollow">sgi.com/tech/stl/ostream_iterator.html</a>http://stackoverflow.com/questions/634087/stdcopy-to-stdcout-for-stdpair/634105#634105Comment by Serge on std::copy to std::cout for std::pairSerge2009-03-11T12:36:41Z2009-03-11T12:36:41ZYou'll probably need <code>operator=</code> for your pairWrapper as well because std::ostream_iterator requiers it and a compiler wouldn't be able to generate it for you due to a const member.http://stackoverflow.com/questions/618403/what-is-the-best-ide-for-c-development-why-use-emacs-over-an-ide/618426#618426Comment by Serge on What is the best IDE for C Development / Why use Emacs over an IDE?Serge2009-03-06T12:42:54Z2009-03-06T12:42:54Z@Rathboma - I'm not familiat with all these IDEs but since you can do anything in C++ which you can do in C therefore you should be comfortable with any good C++ IDE. I use emacs on linux and Visual C++ on Windows, I've some expirience with Code::blocks it's also good and it's crossplatform.http://stackoverflow.com/questions/491086/does-any-programmer-have-to-know-c-yes-why-no-whyComment by Serge on Does any programmer have to know C? Yes, why? No, why?Serge2009-01-29T10:57:08Z2009-01-29T10:57:08ZEnough already, just learn it!http://stackoverflow.com/questions/472530/how-to-pass-an-array-size-as-a-template-with-template-type/473020#473020Comment by Serge on How to pass an array size as a template with template type?Serge2009-01-23T14:16:12Z2009-01-23T14:16:12ZAlthough, that's not really an answer but I post it on Konrad Rudolph's behalf (see comments of the question)http://stackoverflow.com/questions/472530/how-to-pass-an-array-size-as-a-template-with-template-typeComment by Serge on How to pass an array size as a template with template type?Serge2009-01-23T11:08:03Z2009-01-23T11:08:03ZCan you give an example where you absolutly have to use this first version?http://stackoverflow.com/questions/472530/how-to-pass-an-array-size-as-a-template-with-template-typeComment by Serge on How to pass an array size as a template with template type?Serge2009-01-23T11:07:09Z2009-01-23T11:07:09ZWell the first example compiles just fine with Microsoft compiler (2005).
Digital Mars complains about "Error: integral expression expected" in line "void f(TSize (& array)[N]) {"http://stackoverflow.com/questions/429632/how-to-speed-up-floating-point-to-integer-number-conversionComment by Serge on How to speed up floating-point to integer number conversion?Serge2009-01-10T07:35:59Z2009-01-10T07:35:59Z@Max Lybbert: x86, Windows, Linux, Mac OShttp://stackoverflow.com/questions/352055/best-algorithm-to-strip-leading-and-trailing-spaces-in-c/352071#352071Comment by Serge on Best algorithm to strip leading and trailing spaces in CSerge2008-12-09T08:11:05Z2008-12-09T08:11:05Zwhat heppens if s contains only spaces? ;-)http://stackoverflow.com/questions/334277/understanding-dll-dependenciesComment by Serge on understanding dll dependenciesSerge2008-12-02T15:20:44Z2008-12-02T15:20:44ZDependency Walker (depends.exe) shows all functions which are called by your application, so you can figure out which functions it calls from msvcr90d.dll, meybe it helpshttp://stackoverflow.com/questions/322003/what-is-the-best-way-to-test-whether-a-file-exists-on-windows/322125#322125Comment by Serge on What is the best way to test whether a file exists on Windows?Serge2008-11-27T08:00:49Z2008-11-27T08:00:49Z+1 for 'venerable Raymond Chen'... and for good answerhttp://stackoverflow.com/questions/99683/which-and-why-do-you-prefer-exceptions-or-return-codes/99740#99740Comment by Serge on Which, and why, do you prefer Exceptions or Return codes?Serge2008-09-19T09:02:43Z2008-09-19T09:02:43ZIn C++ you should stick to the rule of thumb "Acquire resources in construcotor and release them in destrucotor. For this particular case auto_ptr will do just prefectly.