User dreamlax - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T19:51:13Z http://stackoverflow.com/feeds/user/10320 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1659611/watching-a-folder-using-win32 1 Watching a folder using Win32 dreamlax 2009-11-02T05:53:03Z 2009-11-25T14:33:25Z <p>I'm looking for a straightforward way to watch the contents of a folder using Win32 (minimum target is XP). If possible, it would be nice to use an event-driven approach rather than a polling-type approach. To complicate things, the watched folder may be a network share.</p> <p>I'm really only interested in capturing "new files". I don't care if I am not informed of renamed or removed files.</p> <p>Is there an event-driven way, or is polling my only choice when dealing with Win32?</p> http://stackoverflow.com/questions/1789408/can-doubles-be-used-to-represent-a-64-bit-number-without-loss-of-precision/1789494#1789494 1 Answer by dreamlax for Can doubles be used to represent a 64 bit number without loss of precision dreamlax 2009-11-24T11:30:39Z 2009-11-24T11:30:39Z <p>From memory, a <code>double</code> can represent a 53-bit signed integer exactly.</p> http://stackoverflow.com/questions/1746781/waiting-until-a-file-is-available-for-reading-with-win32 1 Waiting until a file is available for reading with Win32 dreamlax 2009-11-17T05:25:41Z 2009-11-17T18:55:40Z <p>I'm watching a directory by calling <code>ReadDirectoryChangesW</code> synchronously. When a new file is available, I try to access it immediately with <code>CreateFile</code> with <code>GENERIC_READ</code> and <code>FILE_SHARE_READ</code>, but this gives me <code>ERROR_SHARING_VIOLATION</code>. The process that put the file in the watched directory does not finish writing by the time I try to read it.</p> <p>Is there any way to reliably wait until the file is available for reading? I can put the method into a loop like the one below, but I'm hoping there's a better way.</p> <pre><code>while ((hFile = CreateFile (path, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, NULL)) == INVALID_HANDLE_VALUE) { if (GetLastError() == ERROR_SHARING_VIOLATION) Sleep (500); else break; // some other error occurred } if (hFile == INVALID_HANDLE_VALUE) { // deal with other error return 0; } ReadFile (...); </code></pre> http://stackoverflow.com/questions/1749233/check-whether-function-is-declared-with-c-preprocessor/1749266#1749266 1 Answer by dreamlax for Check whether function is declared with C preprocessor? dreamlax 2009-11-17T14:28:27Z 2009-11-17T14:28:27Z <p>The preprocessor is a simple program and knows next to nothing about the underlying language. It cannot tell if a function has been declared. Even if it could, the function may be defined in another library and the symbol is resolved during linking, so the preprocessor could not help in that regard.</p> http://stackoverflow.com/questions/1501424/magickcore-writing-image-data-to-stdout-rather-than-to-a-filename 0 MagickCore writing image data to stdout rather than to a filename dreamlax 2009-10-01T01:05:23Z 2009-11-17T05:30:49Z <p>I'm using MagickCore to generate images from scratch. I'm trying to save my <code>Image</code> as a PNG file, but whenever I call <code>WriteImage</code>, it outputs to standard out rather than to the filename that I specified. For example:</p> <pre><code>Image *image = ImageGenerator(...); // generates valid image ImageInfo *info = CloneImageInfo (NULL); info->file = NULL; strcpy (info->filename, "test.png"); strcpy (info->magick, "png"); WriteImage (info, image); </code></pre> <p>When this code is used, it outputs PNG data to standard out rather than to <code>test.png</code>. Is there something else that I am missing?</p> http://stackoverflow.com/questions/1501424/magickcore-writing-image-data-to-stdout-rather-than-to-a-filename/1746799#1746799 0 Answer by dreamlax for MagickCore writing image data to stdout rather than to a filename dreamlax 2009-11-17T05:30:49Z 2009-11-17T05:30:49Z <p>The trick was to use the <code>FILE *</code> provided by the <code>ImageInfo</code> struct.</p> <pre><code>... info->file = fopen ("test.png", "w+b"); strcpy (info->filename, "test.png"); strcpy (info->magick, "png"); ...</code></pre> http://stackoverflow.com/questions/1721105/how-to-declare-color-for-label/1725734#1725734 1 Answer by dreamlax for how to declare color for Label dreamlax 2009-11-12T22:03:44Z 2009-11-12T22:03:44Z <pre><code>label.textColor = [UIColor redColor]; </code></pre> http://stackoverflow.com/questions/1720404/c-interview-questions/1720416#1720416 11 Answer by dreamlax for C Interview questions dreamlax 2009-11-12T07:03:44Z 2009-11-12T07:03:44Z <ol> <li>Depends.</li> <li>Depends.</li> </ol> http://stackoverflow.com/questions/1711222/adding-a-custom-initwith/1712794#1712794 0 Answer by dreamlax for Adding a custom initWith? dreamlax 2009-11-11T03:21:50Z 2009-11-11T03:58:36Z <p>Sometimes, you want to reuse some initialisation code and modify the behaviour only slightly for specific initialisers. In this case, I do the following:</p> <pre><code> - (id) init { self = [super init]; if (!self) return nil; // These values are always initialised this way ivar1 = 10; ivar2 = @"HellO"; ivar3 = [[NSMutableArray alloc] initWithCapacity:10]; ivar4 = 22; return self; } - (id) initWithIvar4:(int) aValue { // call -init on self, which will call -init on super for us, and set // up ivar1, ivar2, ivar3, and ivar4. self = [self init]; if (!self) return nil; // Change ivar4 from the default 22 to whatever aValue is. ivar4 = aValue; return self; } </code></pre> http://stackoverflow.com/questions/1712753/c-win32-api-controls-messages/1712776#1712776 0 Answer by dreamlax for C++ Win32 API Controls messages dreamlax 2009-11-11T03:13:21Z 2009-11-11T03:30:25Z <p>To assign it an ID, you have to use the <code>hMenu</code> parameter. If you have specified that the window will be a child (i.e. with <code>WS_CHILD</code>), the <code>hMenu</code> parameter will be interpreted as an integer ID for the window. Also, provide the <code>BS_NOTIFY</code> style.</p> <pre><code> HWND boton = CreateWindow ( "BUTTON", WS_TAPSTOP | WS_VISIBLE | WS_CHILD | BS_DEFPUSHBUTTON | BS_NOTIFY, 250, 10, 100, 40, hwnd, (HMENU)101, // This becomes the Control ID (HINSTNACE)GetWindowLong(hwnd,GWL_HINSTANCE), NULL); </code></pre> <p>EDIT: Special shout goes out to <a href="http://stackoverflow.com/users/188704/heath-hunnicutt">Heath Hunnicutt</a> for the info on <code>BS_NOTIFY</code>.</p> http://stackoverflow.com/questions/1712711/why-doesnt-gcc-allow-a-const-int-as-a-case-expression/1712739#1712739 3 Answer by dreamlax for Why doesn't gcc allow a const int as a case expression? dreamlax 2009-11-11T03:03:56Z 2009-11-11T03:03:56Z <p>A constant expression is not the same as a const-qualified type value, even though technically the value is known by the compiler at the point of the <code>case</code> statement.</p> <p>Imagine what would happen if another file declared <code>extern const int FOO</code> and tried to use it the same way. The compiler wouldn't know what <code>FOO</code> was because it was defined in another file. Even though it has a constant <em>value</em>, it is not a constant <em>expression</em>.</p> http://stackoverflow.com/questions/1685653/how-to-find-out-the-endianness-of-a-machine-through-a-c-program/1685666#1685666 2 Answer by dreamlax for How to find out the endianness of a machine through a C program? dreamlax 2009-11-06T05:48:13Z 2009-11-06T05:48:13Z <p>You can use a union, but even that isn't fool-proof.</p> <pre><code> union { int8_t bytes[4]; int32_t integer; } endian; endian.integer = 0x12345678; if (endian.bytes[0] == 0x12) { // Big endian! } else { // Little endian! } </code></pre> <p>Hmmm . . . I <em>think</em> I have that the right way around. You'd need to include <code>stdint.h</code> too.</p> http://stackoverflow.com/questions/1659307/how-to-get-large-file-size-using-c/1659331#1659331 1 Answer by dreamlax for How to get large file size using c dreamlax 2009-11-02T03:43:36Z 2009-11-02T03:43:36Z <p>In Windows, you can use <code>GetFileSize()</code>. The first parameter to this function is a handle to the file, and the second parameter takes a reference to a DWORD, which upon return will contain the high 32-bits of the file's size. The function returns the low 32-bits of the file's size.</p> <p>For example</p> <pre><code>DWORD dwFileSizeLow; DWORD dwFileSizeHigh; HANDLE hFile; hFile = CreateFile (/* Enter the thousands of parameters required here */); if (hFile != INVALID_HANDLE_VALUE) dwFileSizeLow = GetFileSize (hFile, &amp;dwFileSizeHigh); unsigned __int64 fullSize = (((__int64) dwFileSizeHigh) &lt;&lt; 32) | dwFileSizeLow </code></pre> http://stackoverflow.com/questions/1658476/c-fopen-vs-open/1658492#1658492 4 Answer by dreamlax for C fopen vs open dreamlax 2009-11-01T21:53:41Z 2009-11-01T21:53:41Z <p>If you have a <code>FILE *</code>, you can use functions like <code>fscanf</code>, <code>fprintf</code> and <code>fgets</code> etc. If you have just the file descriptor, you have limited (but likely faster) input and output routines <code>read</code>, <code>write</code> etc.</p> http://stackoverflow.com/questions/1656308/obj-c-difference-between-fairfield-and-fairfield-with-at-string/1656344#1656344 3 Answer by dreamlax for Obj-C: Difference between "Fairfield" and @"Fairfield" (with at string)? dreamlax 2009-11-01T03:57:56Z 2009-11-01T03:57:56Z <p>It accepts <code>id</code> rather than <code>NSObject</code> because all initialisers return <code>id</code>. All initialisers return <code>id</code> because subclasses would otherwise override the return type of their ancestors' initialisers.</p> <p>For example, <code>-[NSMutableString init]</code> can't return <code>NSMutableString *</code> because it subclasses <code>-[NSString init]</code>, which can't return <code>NSString *</code> because it overrides <code>-[NSObject init]</code>.</p> <p>Unfortunately, implicit type-casting between <code>const char *</code> and <code>id</code> is perfectly legit, so the compiler won't throw a warning, however a static analyser may be able to pick this sort of mishap up fairly easily.</p> http://stackoverflow.com/questions/1647930/is-it-possible-to-check-whether-you-are-building-for-64-bit-with-microsoft-c-comp 4 Is it possible to check whether you are building for 64-bit with Microsoft C Compiler? dreamlax 2009-10-30T03:52:22Z 2009-10-30T04:41:53Z <p>Is there a simple preprocessor macro that is defined for a 64-bit build? I thought <code>_WIN64</code> might have been it, but even when I build a 32-bit target, the parts enclosed in a <code>#ifdef _WIN64 ... #endif</code> are compiled in, and this is causing problems. It's Friday and I can't think straight, but I'm sure I'm overlooking something very simple here. Maybe even something involving <code>sizeof</code>.</p> http://stackoverflow.com/questions/1627000/xcode-and-generate-debug-symbols/1628381#1628381 0 Answer by dreamlax for Xcode and Generate Debug Symbols dreamlax 2009-10-27T02:01:17Z 2009-10-27T02:01:17Z <p>Under your compiler's settings group ("i.e. GCC 4.2 - Code Generation") there's a setting called "Generate Debug Symbols".</p> <p>You can get an overview of probably all debug-related settings just by typing "debug" in the search box.</p> http://stackoverflow.com/questions/1583981/nslog-and-printing-of-an-object/1584409#1584409 0 Answer by dreamlax for NSLog and printing of an object dreamlax 2009-10-18T08:54:52Z 2009-10-18T08:54:52Z <pre><code>@interface MyObject : NSObject { int myInt; } @end @implementation MyObject - (id) init { myInt = 4; } - (NSString *) description { return [NSString stringWithFormat:@"myInt is %d", myInt]; } @end int main (int argc, char *argv[]) { MyObject *anInstance = [[MyObject alloc] init]; NSLog (@"%@", anInstance); [anInstance release]; return 0; } </code></pre> http://stackoverflow.com/questions/617554/override-a-function-call-in-c 9 Override a function call in C dreamlax 2009-03-06T02:44:35Z 2009-10-06T22:54:53Z <p>I want to override certain function calls to various APIs for the sake of logging the calls, but I also might want to manipulate data before it is sent to the actual function.</p> <p>For example, say I use a function called <code>getObjectName</code> thousands of times in my source code. I want to temporarily override this function sometimes because I want to change the behaviour of this function to see the different result.</p> <p>I create a new source file like this:</p> <pre><code>#include &lt;apiheader.h&gt; const char *getObjectName (object *anObject) { if (anObject == NULL) return "(null)"; else return "name should be here"; } </code></pre> <p>I compile all my other source as I normally would, but I link it against this function first before linking with the API's library. This works fine except I can obviously not call the real function inside my overriding function.</p> <p>Is there an easier way to "override" a function without getting linking/compiling errors/warnings? Ideally I want to be able to override the function by just compiling and linking an extra file or two rather than fiddle around with linking options or altering the actual source code of my program.</p> http://stackoverflow.com/questions/1489522/stringbyappendingpathcomponent-hows-it-work/1489578#1489578 2 Answer by dreamlax for stringByAppendingPathComponent, hows it work? dreamlax 2009-09-28T21:55:31Z 2009-09-28T23:12:54Z <p><code>-stringByAppendingPathComponent</code> returns a new immutable string, it doesn't modify the original. You have to use the return value of this method.</p> http://stackoverflow.com/questions/1487020/how-can-an-objective-c-method-refer-to-the-object-that-invoked-it/1489572#1489572 1 Answer by dreamlax for How can an Objective-C method refer to the object that invoked it? dreamlax 2009-09-28T21:54:08Z 2009-09-28T21:54:08Z <p>Just to clarify, a method may not always be invoked by another object, so the runtime wouldn't be able to provide such information reliably anyway. For example,</p> <pre><code> int main (int argc, char *argv[]) { SEL releaserSel = @selector(release); NSObject *someObject = [[NSObject alloc] init]; IMP releaserImp = [someObject methodForSelector:releaserSel]; releaserImp (someObject, releaserSel); // someObject has been released! return 0; } </code></pre> <p>It's probably not as rare as you'd think too. Invoking a method directly is much faster than sending a message (it helps in situations where the same message is being sent to the same object over and over).</p> http://stackoverflow.com/questions/1468638/is-nsdictionarys-objectforkey-look-up-reference-or-value-based/1469182#1469182 1 Answer by dreamlax for Is NSDictionary's objectForKey look up reference or value based? dreamlax 2009-09-24T00:08:34Z 2009-09-24T00:08:34Z <p>It <em>would</em> work, but only if <code>[itemID hash]</code> was equal to the key's hash, and if <code>[itemID isEqual:]</code> returned true when compared against the key in question. I think an NSNumber's hash is simply the number it holds, but the hash of a string would be completely different even if it was just a string representation of the same number. From memory, the hash of a string is calculated by multiplying each character value by the value of an accumulator times by a certain amount.</p> <p>There might be something else I'm missing, but there was a discussion on the Cocoa mailing list about class behaviour inside collection objects and the general consensus was that if a class was to hold well in a collection it should correctly return decent values for <code>-hash</code> and <code>-isEqual:</code>.</p> <p>I know this answer doesn't really help you in this situation, but it may shed some light on how dictionary collections work in Cocoa.</p> http://stackoverflow.com/questions/1464362/detect-language-of-text/1464535#1464535 1 Answer by dreamlax for Detect language of text dreamlax 2009-09-23T07:49:41Z 2009-09-23T13:38:19Z <p>Language detection is a pretty hard thing to do.</p> <p>Some languages are much easier to detect than others simply due to the diacritics and digraphs/trigraphs used. For example, <a href="http://en.wikipedia.org/wiki/Double%5Facute" rel="nofollow">double-acute accents</a> are used almost exclusively in Hungarian. The <a href="http://en.wikipedia.org/wiki/Dotted%5Fand%5Fdotless%5FI" rel="nofollow">dotless i</a> &lsquo;ı&rsquo;, is used exclusively [I think] in Turkish, t-comma (not t-cedilla) is used only in Romanian, and the eszett &lsquo;ß&rsquo; occurs only in German.</p> <p>Some digraphs, trigraphs and tetragraphs are also a good give-away. For example, you'll most likely find &lsquo;eeuw&rsquo; and &lsquo;ieuw&rsquo; primarily in Dutch, and &lsquo;tsch&rsquo; and &lsquo;dsch&rsquo; primarily in German etc.</p> <p>More giveaways would include common words or common prefixes/suffixes used in a particular language. Sometimes even the punctuation that is used can help determine a language (quote-style and use, etc).</p> <p>If such a library exists I would like to know about it, since I'm working on one myself.</p> http://stackoverflow.com/questions/1464174/sizet-vs-intptrt/1464198#1464198 0 Answer by dreamlax for size_t vs. intptr_t dreamlax 2009-09-23T06:07:18Z 2009-09-23T06:07:18Z <p>I would imagine (and this goes for all type names) that it better conveys your intentions in code.</p> <p>For example, even though <code>unsigned short</code> and <code>wchar_t</code> are the same size on Windows (I think), using <code>wchar_t</code> instead of <code>unsigned short</code> shows the intention that you will use it to store a wide character, rather than just some arbitrary number.</p> http://stackoverflow.com/questions/1457785/what-is-stackoverflow/1457799#1457799 2 Answer by dreamlax for What is StackOverflow? dreamlax 2009-09-22T02:01:56Z 2009-09-22T02:01:56Z <p>Stack Overflow is like Expert Sex Change without all the crap.</p> http://stackoverflow.com/questions/1443377/essential-latex-packages/1443396#1443396 0 Answer by dreamlax for Essential LaTeX Packages dreamlax 2009-09-18T09:16:18Z 2009-09-18T09:16:18Z <p><code>color</code> and <code>pstricks</code> are ones I use very frequently. <code>multicol</code>, <code>graphicx</code>, <code>soul</code>, <code>fancyvrb</code>, and <code>fancyhdr</code> are quite useful as well.</p> http://stackoverflow.com/questions/1440974/outputting-ivars-from-description-method/1442656#1442656 0 Answer by dreamlax for Outputting iVars from description method? dreamlax 2009-09-18T04:50:24Z 2009-09-18T04:50:24Z <p>That's not a bad idea what you had there, it's almost achievable too.</p> <pre><code>// choose a short name for the macro #define _f(x,...) [NSString stringWithFormat:x,__VA_ARGS__] ... - (NSString *) description { return _f(@"Name: %@ Mass: %d", bodyName, bodyMass); } </code></pre> http://stackoverflow.com/questions/1442559/call-latex-on-a-named-pipe-fifo/1442621#1442621 1 Answer by dreamlax for Call LaTeX on a named pipe (fifo)? dreamlax 2009-09-18T04:38:37Z 2009-09-18T04:38:37Z <p>If I echo a blank line into the fifo first and <em>then</em> echo the rest of the document, it works fine.</p> <pre><code>mkfifo test latex test </code></pre> <p>Other console:</p> <pre><code>echo "" &gt; test echo "\documentclass{report}\begin{document}asdf\end{document}" &gt; test </code></pre> <p>First console:</p> <pre><code>xdvi test </code></pre> <p>My guess is that LaTeX makes two passes of the file whereas TeX does not. On the first pass, LaTeX tries to determine something, then it closes the file, and reopens it for the second pass.</p> http://stackoverflow.com/questions/1438269/obtaining-objective-c-nsstring-from-c-char/1438756#1438756 2 Answer by dreamlax for obtaining objective c nsstring from c char[] dreamlax 2009-09-17T13:03:44Z 2009-09-17T13:03:44Z <p>What is the purpose of the loop? You have a loop that essentially brute forces a matrix to calculate the &ldquo;square address&rdquo;. Your method will also return an uninitialized pointer if <code>x</code> is greater than 8.</p> <p>Your entire method could be made much simpler.</p> <pre><code>- (NSString *) convertCGPointToSquareAdress:(CGRect) point { unsigned int x = point.x / PIECE_WIDTH; unsigned int y = point.y / PIECE_WIDTH; // Do some range checking to ensure x and y are valid. char lettreChiffre[3]; lettreChiffre[0] = 'a' + x; lettreChiffre[1] = '1' + y; lettreChiffre[2] = '\0'; return [NSString stringWithCString:letterChiffre encoding:NSASCIIStringEncoding]; } </code></pre> http://stackoverflow.com/questions/1429888/best-practice-and-rationale-import-in-m-or-h/1430369#1430369 2 Answer by dreamlax for Best practice and rationale: #import in .m or .h dreamlax 2009-09-16T00:54:09Z 2009-09-16T00:54:09Z <p>If the interface of your class depends on the interface of another class (i.e. if it is a subclass) then include the header, otherwise forwardly-declare the other class with <code>@class</code> and include that class's interface header in dependent class's source file.</p> <p>The reasoning is simple; by only referencing classes in the header rather than importing the whole interface, you can define mutually dependent classes (i.e. classes that depend on each other), otherwise such a set-up is impossible because recursive file inclusion would occur (but the Objective-C <code>#import</code> makes sure that doesn't happen).</p> http://stackoverflow.com/questions/1792304/memory-leak-on-return-object Comment by dreamlax on Memory leak on return object dreamlax 2009-11-24T19:34:31Z 2009-11-24T19:34:31Z You don't need to allocate and initialise every variable. When you do that, each assignment to that variable will overwrite your freshly allocated object. http://stackoverflow.com/questions/1792304/memory-leak-on-return-object/1792385#1792385 Comment by dreamlax on Memory leak on return object dreamlax 2009-11-24T19:33:13Z 2009-11-24T19:33:13Z <code>options</code> still leaks if <code>[fileArray count] &gt; 0</code>. http://stackoverflow.com/questions/1786137/c-serialization-of-the-floating-point-numbers-floats-doubles/1786157#1786157 Comment by dreamlax on C - Serialization of the floating point numbers (floats, doubles) dreamlax 2009-11-24T11:22:54Z 2009-11-24T11:22:54Z It may require more space, but it's both human readable and machine readable, endian-agnostic, and theoretically limitless with regards to the precision required. http://stackoverflow.com/questions/1775799/what-is-a-programming-language/1775820#1775820 Comment by dreamlax on What is a programming language? dreamlax 2009-11-22T20:43:23Z 2009-11-22T20:43:23Z It's not a descriptive definition. The language itself doesn't control the computer. http://stackoverflow.com/questions/1779715/how-to-get-mac-address-of-your-machine-using-a-c-program/1779777#1779777 Comment by dreamlax on How to get MAC address of your machine using a C program? dreamlax 2009-11-22T20:25:10Z 2009-11-22T20:25:10Z It's not very portable at all. It gives nothing on Mac OS X. The output of <code>ifconfig</code> does not contain the text <code>HWaddr</code>. http://stackoverflow.com/questions/1371460/state-machines-tutorials/1383453#1383453 Comment by dreamlax on state machines tutorials dreamlax 2009-11-20T10:23:01Z 2009-11-20T10:23:01Z Your <code>main</code> doesn't return a value . . . should it? http://stackoverflow.com/questions/1769430/looking-for-concept-for-managing-game-level-views-level-selection-views-prefere Comment by dreamlax on Looking for concept for managing game level views, level selection views, preferences view, storing levels, environment variables. dreamlax 2009-11-20T10:22:15Z 2009-11-20T10:22:15Z Wow, <b>what's</b> with all the emphasis <b>everywhere</b>? http://stackoverflow.com/questions/1768624/playing-audio-file-using-c Comment by dreamlax on Playing audio file using C dreamlax 2009-11-20T06:23:31Z 2009-11-20T06:23:31Z Yes, there <i>are</i> header files to be included to play audio files using C language. Did you want to know <i>which</i> ones? http://stackoverflow.com/questions/1746781/waiting-until-a-file-is-available-for-reading-with-win32/1746829#1746829 Comment by dreamlax on Waiting until a file is available for reading with Win32 dreamlax 2009-11-17T05:56:37Z 2009-11-17T05:56:37Z Unfortunately I have no clue about how the file is generated or the process that is putting it in the watched folder (it could be any program, or it could be the user dragging and dropping a file, etc). http://stackoverflow.com/questions/1746781/waiting-until-a-file-is-available-for-reading-with-win32 Comment by dreamlax on Waiting until a file is available for reading with Win32 dreamlax 2009-11-17T05:31:35Z 2009-11-17T05:31:35Z Win32 == C API, I'll retag. http://stackoverflow.com/questions/1737108/how-do-i-set-the-font-and-color-for-a-group-box-caption-using-win32-and-c Comment by dreamlax on How do I set the font and color for a group box caption using Win32 and C++ dreamlax 2009-11-15T10:22:54Z 2009-11-15T10:22:54Z Win32 is a C API. http://stackoverflow.com/questions/1711095/parse-out-the-file-extension-from-a-file-path-in-c/1711237#1711237 Comment by dreamlax on Parse out the file extension from a file-path in C dreamlax 2009-11-11T05:50:18Z 2009-11-11T05:50:18Z I've never understood why the case-*insensitive* version has <i>case</i> in its name. It seems backwards to me. I hope it's not just me. http://stackoverflow.com/questions/1711222/adding-a-custom-initwith/1712794#1712794 Comment by dreamlax on Adding a custom initWith? dreamlax 2009-11-11T04:00:27Z 2009-11-11T04:00:27Z Edited code to make it more sensible. http://stackoverflow.com/questions/1711222/adding-a-custom-initwith/1712794#1712794 Comment by dreamlax on Adding a custom initWith? dreamlax 2009-11-11T03:45:04Z 2009-11-11T03:45:04Z Sorry, I didn't provide a very decent example. This code was designed to accept that <code>ivar4</code> has a default value of 0, unless specifically set with <code>initWithIvar4:</code>. You could just as easily set <code>ivar4</code> in <code>-[self init]</code> too, but you're right, you could easily end up with some variables initialised and some not, and not easily being able to trace where certain variables are set. http://stackoverflow.com/questions/1712753/c-win32-api-controls-messages/1712771#1712771 Comment by dreamlax on C++ Win32 API Controls messages dreamlax 2009-11-11T03:38:33Z 2009-11-11T03:38:33Z Yeah, you're right, I'm sorry for stealing your thunder. Have an up-vote. It's only 5 points short of an accept.