User Niklas - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T20:34:19Z http://stackoverflow.com/feeds/user/15323 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1905787/pros-and-cons-of-smart-pointers/1905997#1905997 1 Answer by Niklas for pros and cons of smart pointers Niklas 2009-12-15T08:38:56Z 2009-12-15T08:38:56Z <p>Many people run into problems when using smart pointers mixed with raw pointers (to the same objects). A typical example is when interacting with an API that uses raw pointers.<br> For example; in <code>boost::shared_ptr</code> there is a <code>.get()</code> function that returns the raw pointer. Good functionality if used with care, but many people seem to trip on it.<br> IMHO it's an example of a "leaky abstraction".</p> http://stackoverflow.com/questions/1899750/how-do-i-convert-a-boostasiostreambuf-into-a-stdstring/1899771#1899771 0 Answer by Niklas for How do I convert a boost::asio::streambuf into a std::string? Niklas 2009-12-14T09:00:23Z 2009-12-14T09:00:23Z <p>Perhaps <a href="http://stackoverflow.com/questions/877652/copy-a-streambufs-contents-to-a-string">this SO answer</a> could be helpful? Depends on what you mean by convert, of course.</p> http://stackoverflow.com/questions/1892831/programmer-working-conditions/1892887#1892887 10 Answer by Niklas for Programmer working conditions Niklas 2009-12-12T09:35:50Z 2009-12-12T09:35:50Z <p>I have worked in private office, 2 persons sharing, 6-12 people sharing and totally open (20+). In my experience, more people in a room leads to more distractions. Distraction comes in several forms; phones ringing, non-developers chit-chatting, developers chit-chatting, people walking by behind your back etc.<br> The argument that it helps communication is rubbish (IMHO). It sure helps <em>unwanted</em> communication, but when you need to talk to someone about a task at hand, you are likely to feel like you're disturbing everyone and refrain from talking at all.</p> <p>Another often overlooked drawback with more people sharing physical space is the feeling of non-privacy. At least for me, that is a huge productivity loss. We are not packing fish in a factory, we are trying to concentrate and be creative...</p> http://stackoverflow.com/questions/1761806/whats-an-algorithm-or-code-for-the-obtaining-ordinal-position-of-an-element-in-a/1761922#1761922 0 Answer by Niklas for What’s An Algorithm or code for the obtaining ordinal position of an element in a list sorted by value in c++ Niklas 2009-11-19T09:13:11Z 2009-11-19T09:13:11Z <p>If you have the iterator to the item (as suggested by dtrosset), you can use <a href="http://www.cplusplus.com/reference/std/iterator/distance/" rel="nofollow">std::distance</a> (e.g. std::distance(my_list.begin(), item_it))</p> http://stackoverflow.com/questions/1741732/django-provide-choices-list-to-a-checkbox-from-a-view-function/1741802#1741802 1 Answer by Niklas for Django: provide choices list to a checkbox from a view function Niklas 2009-11-16T12:11:20Z 2009-11-16T12:11:20Z <p>I would add an <code>__init__(choices=None)</code> function to the form class <code>FormNumber</code> and initialize the ChoiceField <code>number</code> using that unless it's <code>None</code>.<br> If <code>choices</code> is not provided (defaults to <code>None</code>), initialization would do what it does by default.</p> http://stackoverflow.com/questions/1554142/django-form-with-just-a-booleanfield/1559297#1559297 0 Answer by Niklas for Django form with just a BooleanField Niklas 2009-10-13T10:09:31Z 2009-10-13T10:09:31Z <p>There was a bug in the code in my question. Thanks to @d0ugal for helping me spot it by including a slightly different example. The problem was here: </p> <pre><code>form = MyForm(request.POST or None) # &lt;- PROBLEM HERE!!!!!!!!!!!!!!!! if request.method == 'POST' and form.is_valid(): # do stuff... </code></pre> <p>The bug was that I assumed that request.POST would evaluate to True if it was a post. But since browsers don't post anything for a not-checked checkbox, and that was the only field, the POST data was an empty dictionary, which evaluates to False. This caused None to be used as initialization data, causing the form to be unbound and not valid.<br /> @d0ugal's example does the safe thing and tests request.method first.</p> http://stackoverflow.com/questions/1554142/django-form-with-just-a-booleanfield 2 Django form with just a BooleanField Niklas 2009-10-12T11:56:02Z 2009-10-13T10:09:31Z <p>I'm rather new to Django and I'm using Django 1.0. I have this:<br /> forms.py:</p> <pre><code>class MyForm(forms.Form): extra_cheeze = forms.BooleanField(required=False, initial=False, label='Extra cheeze') </code></pre> <p>views.py:</p> <pre><code>def order_something(request): form = MyForm(request.POST or None) if request.method == 'POST' and form.is_valid(): # do stuff... </code></pre> <p>The problem is that the form is not valid unless the checkbox is checked, so there doesn't seem to be a way to get a False value from the field. As far as I can understand from <a href="http://docs.djangoproject.com/en/1.0/ref/forms/fields/#booleanfield" rel="nofollow">the docs</a>, it should work. It works if I add a CharField to my form...</p> <p>Am I misunderstanding something here or is this a bug? (Yes, I have googled but found nothing relevant)</p> <p><strong>Update:</strong> As suggested by @Dominic Rodger, I tried adding a hidden field<br /> <code>dummy = forms.CharField(initial='dummy', widget=forms.widgets.HiddenInput())</code><br /> and that makes the form valid. This workaround enables me to move on right now, but it would still be interesting to know if I'm misunderstanding something...</p> http://stackoverflow.com/questions/867684/some-good-django-blogs-feeds-to-follow 7 Some good Django blogs/feeds to follow? Niklas 2009-05-15T09:07:34Z 2009-10-13T06:45:03Z <p>I'm about to start working with Django and would like to familiarize myself with the community a bit.</p> <p>Which blogs or news sites should I follow?</p> http://stackoverflow.com/questions/1476996/how-to-find-which-view-is-resolved-from-url-in-presence-of-decorators 3 How to find which view is resolved from url in presence of decorators Niklas 2009-09-25T12:20:42Z 2009-09-25T22:32:52Z <p>For debugging purposes, I'd like a quick way (e.g. in manage.py shell) of looking up which view that will be called as a result of a specific URL being requested.<br /> I know this is what django.core.urlresolvers.resolve does, but when having a decorator on the view function it will return that decorator.<br /> Example:</p> <pre><code>&gt;&gt;&gt;django.core.urlresolvers.resolve('/edit_settings/')) (Allow, (), {}) </code></pre> <p>...where Allow is the decorator, not the view it's decorating.</p> <p>How can I find the view without manually inspecting the urls.py files?</p> http://stackoverflow.com/questions/911343/required-reading-for-a-soon-to-be-web-developer 6 Required reading for a soon-to-be web developer Niklas 2009-05-26T15:36:45Z 2009-09-19T22:06:38Z <p>I am about to start working with web development after doing (non-web) server and client development for about ten years.<br /> I'm <strong>not</strong> looking for info on any particular framework, library or about TCP/IP. </p> <p>What I am looking for is reading (dead tree or online) that will help me understand the different challenges and terminology that is necessary knowledge for a web developer, given that I'm a fairly experienced non-web developer.</p> <p>EDIT: I can see that many people read this as "how do I learn web development". This is <strong>not</strong> what I'm asking. I'm asking for <strong>reading</strong>...</p> http://stackoverflow.com/questions/1437216/can-i-make-a-c-objects-lifetime-depend-on-another-object/1437284#1437284 1 Answer by Niklas for Can I make a C# object's lifetime depend on another object? Niklas 2009-09-17T07:44:52Z 2009-09-17T07:44:52Z <p>Why don't you just reference A from B?<br /> That will keep A alive and does not require A to be aware of B...</p> http://stackoverflow.com/questions/1404749/path-separator-char-in-python-2-4 1 Path separator char in python 2.4 Niklas 2009-09-10T11:30:26Z 2009-09-10T11:40:07Z <p>Just out of curiosity - is there another way to obtain the platform's path separator char than <code>os.path.normcase('/')</code> in Python 2.4?<br /> I was expecting something like a <code>os.path.separator</code> constant...</p> http://stackoverflow.com/questions/1387727/checking-for-empty-queryset-in-django 2 Checking for empty queryset in Django Niklas 2009-09-07T05:50:42Z 2009-09-07T06:05:56Z <p>What is the recommended idiom for checking whether a query returned any results?<br /> Example:</p> <pre><code>orgs = Organisation.objects.filter(name__iexact = 'Fjuk inc') # If any results # Do this with the results without querying again. # Else, do something else... </code></pre> <p>I suppose there are several different ways of checking this, but I'd like to know how an experienced Django user would do it. Most examples in the docs just ignore the case where nothing was found...</p> http://stackoverflow.com/questions/1158475/executing-next-line-after-completion-of-code-in-ajax-in-jquery/1158508#1158508 0 Answer by Niklas for Executing next line after completion of code in Ajax in Jquery Niklas 2009-07-21T10:59:36Z 2009-07-21T10:59:36Z <p>I believe the ajax call is asynchronous by default. From the <a href="http://docs.jquery.com/Ajax/jQuery.ajax" rel="nofollow">jquery docs</a>: </p> <blockquote> <p>async Boolean Default: true By default, all requests are sent asynchronous (i.e. this is set to true by default). If you need synchronous requests, set this option to false. Note that synchronous requests may temporarily lock the browser, disabling any actions while the request is active.</p> </blockquote> <p>As noted by redsquare, it's probably better to refactor than actually using this option. This depends on your specific requirements of course...</p> http://stackoverflow.com/questions/1129883/c-application-stopped-working/1129909#1129909 0 Answer by Niklas for C# application stopped working Niklas 2009-07-15T07:27:39Z 2009-07-15T07:27:39Z <p>Could you be using something from a version of .NET that is not available on the second machine?</p> http://stackoverflow.com/questions/1082582/high-level-coding-overview/1082714#1082714 1 Answer by Niklas for High Level Coding Overview? Niklas 2009-07-04T18:16:32Z 2009-07-04T18:16:32Z <p>I can recommend looking at some of the answers I got for a <a href="http://stackoverflow.com/questions/911343/required-reading-for-a-soon-to-be-web-developer">similar question</a>.</p> <p>Like here, you'll need to filter out a few "No, I have no answer but you should just start coding because that works best for me" type of answers, but I got a few fairly good tips from the others.</p> http://stackoverflow.com/questions/986048/detect-window-close-outside-of-wndproc 1 Detect window close outside of wndproc? Niklas 2009-06-12T10:41:25Z 2009-06-16T06:41:02Z <p>I am currently working on a win32 GUI app that does most of its work in the window thread.<br /> This thread can sometimes be blocked since it runs a script engine that can be suspended by an external script debugger (another process). This is not a problem most of the time as it is expected behavior.<br /> However, if the user tries to close the window, the app obviously becomes unresponsive and you get the "This application is not responding..." dialog.<br /> My plan was to periodically call back from the "suspend code" to the app and have it do PeekMessage for WM_CLOSE, and if so, terminate the debugger. Unfortunately, from what I can understand, WM_CLOSE it sent directly to the wndproc.</p> <p>Is there some other way that I could detect that the user wants to close the window, short of redesigning the app which is not an option?<br /> For example, is there some other message that can be checked for with PeekMessage?</p> http://stackoverflow.com/questions/884772/is-svn-merge-backwards/884827#884827 3 Answer by Niklas for is svn-merge backwards? Niklas 2009-05-19T20:21:35Z 2009-05-19T20:21:35Z <p>If your working copy is on "Experiment", that's where the result of the merge is going.</p> <p>The from-to you mention is how to build the diff that will be applied, i.e it calculates the difference "from" x "to" y and applies it to the working copy.</p> <p>The TortoiseSVN help explains this quite decently.</p> http://stackoverflow.com/questions/882456/is-there-a-2-0-sp2-net-redistributable 1 Is there a 2.0 SP2 .NET redistributable? Niklas 2009-05-19T12:30:05Z 2009-05-19T13:45:47Z <p>I'm a bit confused over the .net "redistributables"...</p> <p>Our C# code uses some API calls that require .net 2.0 sp2. <strong>We do not want to require the user to download anything at the time of installation</strong> (this is a Winforms app with and installer) for various reasons. We currently include the 2.0 redistributable, and of course the functions requiring sp2 throws.</p> <p>Is there a redistributable package for 2.0 SP2 to be found somewhere?</p> <p>If not, what would be the best alternative?</p> http://stackoverflow.com/questions/348919/building-a-windows-executable-from-my-ruby-app 2 Building a Windows executable from my Ruby app? Niklas 2008-12-08T08:34:54Z 2009-03-25T18:05:29Z <p>I'd like to be able to send a Ruby app to some colleagues without requiring them to install a Ruby interpreter. A single exe would be preferable.</p> <p>I googled and found "RubyScript2Exe".</p> <p>What are your experiences with that? Are there other such tools or are there better approaches altogether than building an exe?</p> http://stackoverflow.com/questions/601609/experience-with-local-version-control-of-svn-working-copy 3 Experience with local version control of SVN working copy? Niklas 2009-03-02T08:19:56Z 2009-03-02T09:59:03Z <p>At my place of work, we use SVN and TortoiseSVN (Windows XP) as a client. I have a longish commute and work offline during that.<br /> Now, I'd like to have some sort of "extended undo" locally; i.e. I would like to have local version control of my SVN working copy, in order to dare to refactor for example.<br /> Switching altogether to e.g. git, mercurial etc. is not an option as the company uses SVN. </p> <p>What I'd like to know is if someone has any experience in versioning the local SVN working copy, perhaps by running a local git or similar?<br /> Are there any potential drawbacks? (perhaps messing with .svn folders or similar)</p> http://stackoverflow.com/questions/427477/fastest-way-to-clamp-a-real-fixed-floating-point-value 5 Fastest way to clamp a real (fixed/floating point) value? Niklas 2009-01-09T09:13:11Z 2009-01-17T11:30:47Z <p>Hi, Is there a more efficient way to clamp real numbers than using if statements or ternary operators? I want to do this both for doubles and for a 32-bit fixpoint implementation (16.16). I'm <strong>not</strong> asking for code that can handle both cases; they will be handled in separate functions.</p> <p>Obviously, I can do something like:</p> <pre><code>double clampedA; double a = calculate(); clampedA = a &gt; MY_MAX ? MY_MAX : a; clampedA = a &lt; MY_MIN ? MY_MIN : a; </code></pre> <p>or</p> <pre><code>double a = calculate(); double clampedA = a; if(clampedA &gt; MY_MAX) clampedA = MY_MAX; else if(clampedA &lt; MY_MIN) clampedA = MY_MIN; </code></pre> <p>The fixpoint version would use functions/macros for comparisons.</p> <p>This is done in a performance-critical part of the code, so I'm looking for an as efficient way to do it as possible (which I suspect would involve bit-manipulation) </p> <p>EDIT: It has to be standard/portable C, platform-specific functionality is not of any interest here. Also, <code>MY_MIN</code> and <code>MY_MAX</code> are the same type as the value I want clamped (doubles in the examples above).</p> http://stackoverflow.com/questions/435322/good-or-bad-c-idiom-objects-used-purely-for-constructor-destructor/435372#435372 2 Answer by Niklas for Good or Bad C++ Idiom - Objects used purely for constructor/destructor? Niklas 2009-01-12T13:14:44Z 2009-01-12T13:14:44Z <p>I usually refer to this as a "guard". In my opinion it demonstrates one of C++'s biggest strengths (deterministic resource-handling). It's one of the things I miss the most when working in garbage-collected languages.</p> http://stackoverflow.com/questions/423403/what-are-the-tell-tale-signs-in-an-interview-that-a-developer-is-not-competent/423550#423550 2 Answer by Niklas for What are the tell-tale signs in an interview that a developer is not competent? Niklas 2009-01-08T07:53:53Z 2009-01-08T07:53:53Z <p>Obviously, there are tons of things to ask to verify general developer skills, but I have a few "baseline" language-specific suggestions:</p> <p>When interviewing candidates for a C++ dev position, the first thing I check is that they understand construction/destruction order and how different types of storage classes works. I consider that very basic knowledge (and crucial for writing exception-safe code) when it comes to C++ and if they fail at that, it's a very bad sign. I'm surprised how many people that claim professional C++ knowledge that just don't know how these things work.</p> <p>When it comes to Java candidates, my first baseline test is that they know how references work in Java (e.g. show them a few different attempts at implementing a swap function and ask how they work / don't work). This is also an area where surprisingly many claim-to-be-pro candidates fail...</p> <p>I've never interviewed anyone for a C# position, so I have nothing to say there really.</p> http://stackoverflow.com/questions/333367/learning-svg/358683#358683 1 Answer by Niklas for Learning SVG ? Niklas 2008-12-11T08:22:48Z 2008-12-11T08:28:57Z <p>I learned it developing <a href="http://www.w3.org/TR/SVGMobile12/" rel="nofollow">SVG Tiny</a> software, mostly by reading the spec. SVG Tiny is basically a subset of full SVG and is focused on use in mobile phones and other "devices".</p> <p>Adding to the links from previous answers, <a href="http://www.kevlindev.com/tutorials/basics/index.htm" rel="nofollow">KevLinDev</a> has a bunch of beginner-friendly tutorials.</p> <p>Please don't flame me into oblivion for recommending my employer's software, but I honestly think you could learn a bit by playing around with <a href="http://www.ikivo.com/animator/index.html" rel="nofollow">Ikivo Animator</a> and looking at the output SVG. Animator supports simple drawing and animation. It's not free, but has a 90 day trial period.</p> http://stackoverflow.com/questions/336585/what-does-a-const-pointer-to-pointer-mean-in-c-and-in-c 6 What does a const pointer-to-pointer mean in C and in C++? Niklas 2008-12-03T09:18:44Z 2008-12-03T13:52:34Z <p>I know the rule-of-thumb to read declarations right-to-left and I was fairly sure I knew what was going on until a colleague told me that:</p> <pre><code>const MyStructure** ppMyStruct; </code></pre> <p>means "ppMyStruct is <strong>a pointer to a const pointer to a (mutable) MyStructure</strong>" (in C++).</p> <p>I would have thought it meant "ppMyStruct is <strong>a pointer to a pointer to a const MyStructure</strong>". I looked for an answer in the C++ spec, but apparently I'm not very good at that...</p> <p>What does in mean in C++, and does it mean the same thing in C?</p> http://stackoverflow.com/questions/304249/is-there-an-optimal-byte-size-for-sending-data-over-a-network/305183#305183 0 Answer by Niklas for Is there an optimal byte size for sending data over a network? Niklas 2008-11-20T12:45:20Z 2008-11-20T12:45:20Z <p>One empirical test you can do, if you haven't already, is of course to use a sniffer (tcpdump, Wireshark etc.) and look at what packet sizes are achieved when using other software for up/downloading. That might give you a hint.</p> http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/172683#172683 10 Answer by Niklas for What real life bad habits has programming given you? Niklas 2008-10-05T21:22:47Z 2008-10-05T21:22:47Z <p>I celebrate Christmas eve on Oct 30.</p> http://stackoverflow.com/questions/141807/how-do-i-rename-an-entire-project-in-vc-2005/141929#141929 1 Answer by Niklas for How do I rename an entire project in VC++ 2005 Niklas 2008-09-26T20:55:25Z 2008-09-26T20:55:25Z <p>I haven't verified this, but I've done this a number of times and if my memory serves me right, you can actually use the search-and-replace functionality in VS2005 to rename all instances of the string "X" to "Y" in any type of file. Then you need to close the solution and change the project (and any other file with the same name regardless of extension) file name(s).</p> <p>You will obviously need to do a full rebuild afterwards.</p> http://stackoverflow.com/questions/137812/whats-your-favorite-c0x-feature/141846#141846 2 Answer by Niklas for What's your favorite C++0x feature? Niklas 2008-09-26T20:41:08Z 2008-09-26T20:41:08Z <p>Smart pointers. It really makes a world of difference not having to explicitly memory-manage heap-allocated objects.</p> <p>Obviously you still need to "know what you're doing", but in my experience it has decreased the number of memory-related bugs at least one order of magnitude in software I've worked with.</p> http://stackoverflow.com/questions/1920080/pushing-a-string-onto-a-stack-in-c Comment by Niklas on pushing a string onto a stack in C Niklas 2009-12-17T08:28:14Z 2009-12-17T08:28:14Z Personally, I think they are two different valid questions... http://stackoverflow.com/questions/1905237/where-in-memory-is-vtable-stored/1905248#1905248 Comment by Niklas on Where in memory is vtable stored? Niklas 2009-12-15T08:58:02Z 2009-12-15T08:58:02Z The object layout is for an instance of C, right? (As opposed to an A, a B and a C) http://stackoverflow.com/questions/1899754/how-to-design-multithread-systems-in-a-engineer-way Comment by Niklas on How to design multithread systems in a engineer way? Niklas 2009-12-14T08:56:54Z 2009-12-14T08:56:54Z Duplicate? <a href="http://stackoverflow.com/questions/164187/" rel="nofollow">stackoverflow.com/questions/164187</a> http://stackoverflow.com/questions/1887342/javascript-date-field-utility/1887345#1887345 Comment by Niklas on Javascript date field utility Niklas 2009-12-11T13:12:26Z 2009-12-11T13:12:26Z ...assuming all misspellings are after the three first letters of course. http://stackoverflow.com/questions/1763549/python-asynchronous-tcp-socketserver/1763579#1763579 Comment by Niklas on Python: asynchronous tcp socketserver Niklas 2009-11-20T09:42:19Z 2009-11-20T09:42:19Z I pointed out the same thing as the other answers here (the client connects on the port used by the server). Sorry, I should have phrased it more clearly. http://stackoverflow.com/questions/1666941/udp-listener-xp-vista-win7-differences Comment by Niklas on UDP Listener XP/Vista/Win7 Differences? Niklas 2009-11-03T12:26:55Z 2009-11-03T12:26:55Z Same .NET version on all machines? http://stackoverflow.com/questions/1554142/django-form-with-just-a-booleanfield/1555759#1555759 Comment by Niklas on Django form with just a BooleanField Niklas 2009-10-13T10:00:26Z 2009-10-13T10:00:26Z Actually, the default for 'required' is True, see <a href="http://docs.djangoproject.com/en/dev/ref/forms/fields/#required" rel="nofollow">docs.djangoproject.com/en/dev/&hellip;</a>. But your answer made me spot my bug, so +1 for that! I'll answer my own question to make it clear to future readers what the problem was... http://stackoverflow.com/questions/1554142/django-form-with-just-a-booleanfield Comment by Niklas on Django form with just a BooleanField Niklas 2009-10-12T12:05:43Z 2009-10-12T12:05:43Z I will try. I suspect that the Form doesn't like the empty data, since the browser won't include the field for an unchecked checkbox. http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/172683#172683 Comment by Niklas on What real life bad habits has programming given you? Niklas 2009-08-06T13:47:08Z 2009-08-06T13:47:08Z In Scandinavia we celebrate Christmas eve, not Christmas day, but feel free to add one for increases funniness :) http://stackoverflow.com/questions/1081792/developing-trading-applications/1081817#1081817 Comment by Niklas on Developing trading applications Niklas 2009-07-04T10:03:44Z 2009-07-04T10:03:44Z Doesn't answer the question, but it's very sane advice... http://stackoverflow.com/questions/1081868/destructor-problem/1081905#1081905 Comment by Niklas on destructor problem Niklas 2009-07-04T09:56:11Z 2009-07-04T09:56:11Z I'd also suggest changing the signature to void cardHand::addCard(const playingCard&amp; card) http://stackoverflow.com/questions/986048/detect-window-close-outside-of-wndproc/986073#986073 Comment by Niklas on Detect window close outside of wndproc? Niklas 2009-06-16T05:03:39Z 2009-06-16T05:03:39Z The app drives the script engine on its window thread, hence the problem. http://stackoverflow.com/questions/986048/detect-window-close-outside-of-wndproc/991574#991574 Comment by Niklas on Detect window close outside of wndproc? Niklas 2009-06-16T05:01:21Z 2009-06-16T05:01:21Z That is obviously the best solution, but unfortunately not what I asked. See &quot;Is there some other way that I could detect that the user wants to close the window, short of redesigning the app which is not an option?&quot;. http://stackoverflow.com/questions/986048/detect-window-close-outside-of-wndproc/986073#986073 Comment by Niklas on Detect window close outside of wndproc? Niklas 2009-06-12T12:29:22Z 2009-06-12T12:29:22Z The problem is that the wndproc is called on the window thread, which is blocked in the scenario at hand. http://stackoverflow.com/questions/986048/detect-window-close-outside-of-wndproc/986266#986266 Comment by Niklas on Detect window close outside of wndproc? Niklas 2009-06-12T12:12:36Z 2009-06-12T12:12:36Z It has, and the problem is that if I call it, it may cause another call into the script engine which is already suspended... It's a mess, but I'm unfortunately hindered from redesigning the app.