User dreamlax - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T19:51:13Zhttp://stackoverflow.com/feeds/user/10320http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1659611/watching-a-folder-using-win321Watching a folder using Win32dreamlax2009-11-02T05:53:03Z2009-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#17894941Answer by dreamlax for Can doubles be used to represent a 64 bit number without loss of precisiondreamlax2009-11-24T11:30:39Z2009-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-win321Waiting until a file is available for reading with Win32dreamlax2009-11-17T05:25:41Z2009-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#17492661Answer by dreamlax for Check whether function is declared with C preprocessor?dreamlax2009-11-17T14:28:27Z2009-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-filename0MagickCore writing image data to stdout rather than to a filenamedreamlax2009-10-01T01:05:23Z2009-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#17467990Answer by dreamlax for MagickCore writing image data to stdout rather than to a filenamedreamlax2009-11-17T05:30:49Z2009-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#17257341Answer by dreamlax for how to declare color for Label dreamlax2009-11-12T22:03:44Z2009-11-12T22:03:44Z<pre><code>label.textColor = [UIColor redColor];
</code></pre>
http://stackoverflow.com/questions/1720404/c-interview-questions/1720416#172041611Answer by dreamlax for C Interview questionsdreamlax2009-11-12T07:03:44Z2009-11-12T07:03:44Z<ol>
<li>Depends.</li>
<li>Depends.</li>
</ol>
http://stackoverflow.com/questions/1711222/adding-a-custom-initwith/1712794#17127940Answer by dreamlax for Adding a custom initWith?dreamlax2009-11-11T03:21:50Z2009-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#17127760Answer by dreamlax for C++ Win32 API Controls messagesdreamlax2009-11-11T03:13:21Z2009-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#17127393Answer by dreamlax for Why doesn't gcc allow a const int as a case expression?dreamlax2009-11-11T03:03:56Z2009-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#16856662Answer by dreamlax for How to find out the endianness of a machine through a C program?dreamlax2009-11-06T05:48:13Z2009-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#16593311Answer by dreamlax for How to get large file size using cdreamlax2009-11-02T03:43:36Z2009-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, &dwFileSizeHigh);
unsigned __int64 fullSize = (((__int64) dwFileSizeHigh) << 32) | dwFileSizeLow
</code></pre>
http://stackoverflow.com/questions/1658476/c-fopen-vs-open/1658492#16584924Answer by dreamlax for C fopen vs opendreamlax2009-11-01T21:53:41Z2009-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#16563443Answer by dreamlax for Obj-C: Difference between "Fairfield" and @"Fairfield" (with at string)?dreamlax2009-11-01T03:57:56Z2009-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-comp4Is it possible to check whether you are building for 64-bit with Microsoft C Compiler?dreamlax2009-10-30T03:52:22Z2009-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#16283810Answer by dreamlax for Xcode and Generate Debug Symbols dreamlax2009-10-27T02:01:17Z2009-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#15844090Answer by dreamlax for NSLog and printing of an objectdreamlax2009-10-18T08:54:52Z2009-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-c9Override a function call in Cdreamlax2009-03-06T02:44:35Z2009-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 <apiheader.h>
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#14895782Answer by dreamlax for stringByAppendingPathComponent, hows it work?dreamlax2009-09-28T21:55:31Z2009-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#14895721Answer by dreamlax for How can an Objective-C method refer to the object that invoked it?dreamlax2009-09-28T21:54:08Z2009-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#14691821Answer by dreamlax for Is NSDictionary's objectForKey look up reference or value based?dreamlax2009-09-24T00:08:34Z2009-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#14645351Answer by dreamlax for Detect language of textdreamlax2009-09-23T07:49:41Z2009-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> ‘ı’, is used exclusively [I think] in Turkish, t-comma (not t-cedilla) is used only in Romanian, and the eszett ‘ß’ occurs only in German.</p>
<p>Some digraphs, trigraphs and tetragraphs are also a good give-away. For example, you'll most likely find ‘eeuw’ and ‘ieuw’ primarily in Dutch, and ‘tsch’ and ‘dsch’ 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#14641980Answer by dreamlax for size_t vs. intptr_tdreamlax2009-09-23T06:07:18Z2009-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#14577992Answer by dreamlax for What is StackOverflow?dreamlax2009-09-22T02:01:56Z2009-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#14433960Answer by dreamlax for Essential LaTeX Packagesdreamlax2009-09-18T09:16:18Z2009-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#14426560Answer by dreamlax for Outputting iVars from description method?dreamlax2009-09-18T04:50:24Z2009-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#14426211Answer by dreamlax for Call LaTeX on a named pipe (fifo)?dreamlax2009-09-18T04:38:37Z2009-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 "" > test
echo "\documentclass{report}\begin{document}asdf\end{document}" > 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#14387562Answer by dreamlax for obtaining objective c nsstring from c char[] dreamlax2009-09-17T13:03:44Z2009-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 “square address”. 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#14303692Answer by dreamlax for Best practice and rationale: #import in .m or .hdreamlax2009-09-16T00:54:09Z2009-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-objectComment by dreamlax on Memory leak on return objectdreamlax2009-11-24T19:34:31Z2009-11-24T19:34:31ZYou 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#1792385Comment by dreamlax on Memory leak on return objectdreamlax2009-11-24T19:33:13Z2009-11-24T19:33:13Z<code>options</code> still leaks if <code>[fileArray count] > 0</code>.http://stackoverflow.com/questions/1786137/c-serialization-of-the-floating-point-numbers-floats-doubles/1786157#1786157Comment by dreamlax on C - Serialization of the floating point numbers (floats, doubles)dreamlax2009-11-24T11:22:54Z2009-11-24T11:22:54ZIt 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#1775820Comment by dreamlax on What is a programming language?dreamlax2009-11-22T20:43:23Z2009-11-22T20:43:23ZIt'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#1779777Comment by dreamlax on How to get MAC address of your machine using a C program?dreamlax2009-11-22T20:25:10Z2009-11-22T20:25:10ZIt'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#1383453Comment by dreamlax on state machines tutorialsdreamlax2009-11-20T10:23:01Z2009-11-20T10:23:01ZYour <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-prefereComment by dreamlax on Looking for concept for managing game level views, level selection views, preferences view, storing levels, environment variables.dreamlax2009-11-20T10:22:15Z2009-11-20T10:22:15ZWow, <b>what's</b> with all the emphasis <b>everywhere</b>?http://stackoverflow.com/questions/1768624/playing-audio-file-using-cComment by dreamlax on Playing audio file using Cdreamlax2009-11-20T06:23:31Z2009-11-20T06:23:31ZYes, 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#1746829Comment by dreamlax on Waiting until a file is available for reading with Win32dreamlax2009-11-17T05:56:37Z2009-11-17T05:56:37ZUnfortunately 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-win32Comment by dreamlax on Waiting until a file is available for reading with Win32dreamlax2009-11-17T05:31:35Z2009-11-17T05:31:35ZWin32 == 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-cComment by dreamlax on How do I set the font and color for a group box caption using Win32 and C++dreamlax2009-11-15T10:22:54Z2009-11-15T10:22:54ZWin32 is a C API.http://stackoverflow.com/questions/1711095/parse-out-the-file-extension-from-a-file-path-in-c/1711237#1711237Comment by dreamlax on Parse out the file extension from a file-path in Cdreamlax2009-11-11T05:50:18Z2009-11-11T05:50:18ZI'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#1712794Comment by dreamlax on Adding a custom initWith?dreamlax2009-11-11T04:00:27Z2009-11-11T04:00:27ZEdited code to make it more sensible.http://stackoverflow.com/questions/1711222/adding-a-custom-initwith/1712794#1712794Comment by dreamlax on Adding a custom initWith?dreamlax2009-11-11T03:45:04Z2009-11-11T03:45:04ZSorry, 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#1712771Comment by dreamlax on C++ Win32 API Controls messagesdreamlax2009-11-11T03:38:33Z2009-11-11T03:38:33ZYeah, you're right, I'm sorry for stealing your thunder. Have an up-vote. It's only 5 points short of an accept.