User Niklas - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T20:34:19Zhttp://stackoverflow.com/feeds/user/15323http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1905787/pros-and-cons-of-smart-pointers/1905997#19059971Answer by Niklas for pros and cons of smart pointers Niklas2009-12-15T08:38:56Z2009-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#18997710Answer by Niklas for How do I convert a boost::asio::streambuf into a std::string?Niklas2009-12-14T09:00:23Z2009-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#189288710Answer by Niklas for Programmer working conditionsNiklas2009-12-12T09:35:50Z2009-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#17619220Answer 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++Niklas2009-11-19T09:13:11Z2009-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#17418021Answer by Niklas for Django: provide choices list to a checkbox from a view functionNiklas2009-11-16T12:11:20Z2009-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#15592970Answer by Niklas for Django form with just a BooleanFieldNiklas2009-10-13T10:09:31Z2009-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) # <- 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-booleanfield2Django form with just a BooleanFieldNiklas2009-10-12T11:56:02Z2009-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-follow7Some good Django blogs/feeds to follow?Niklas2009-05-15T09:07:34Z2009-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-decorators3How to find which view is resolved from url in presence of decoratorsNiklas2009-09-25T12:20:42Z2009-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>>>>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-developer6Required reading for a soon-to-be web developerNiklas2009-05-26T15:36:45Z2009-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#14372841Answer by Niklas for Can I make a C# object's lifetime depend on another object?Niklas2009-09-17T07:44:52Z2009-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-41Path separator char in python 2.4Niklas2009-09-10T11:30:26Z2009-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-django2Checking for empty queryset in DjangoNiklas2009-09-07T05:50:42Z2009-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#11585080Answer by Niklas for Executing next line after completion of code in Ajax in JqueryNiklas2009-07-21T10:59:36Z2009-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#11299090Answer by Niklas for C# application stopped workingNiklas2009-07-15T07:27:39Z2009-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#10827141Answer by Niklas for High Level Coding Overview?Niklas2009-07-04T18:16:32Z2009-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-wndproc1Detect window close outside of wndproc?Niklas2009-06-12T10:41:25Z2009-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#8848273Answer by Niklas for is svn-merge backwards?Niklas2009-05-19T20:21:35Z2009-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-redistributable1Is there a 2.0 SP2 .NET redistributable?Niklas2009-05-19T12:30:05Z2009-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-app2Building a Windows executable from my Ruby app?Niklas2008-12-08T08:34:54Z2009-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-copy3Experience with local version control of SVN working copy?Niklas2009-03-02T08:19:56Z2009-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-value5Fastest way to clamp a real (fixed/floating point) value?Niklas2009-01-09T09:13:11Z2009-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 > MY_MAX ? MY_MAX : a;
clampedA = a < MY_MIN ? MY_MIN : a;
</code></pre>
<p>or</p>
<pre><code>double a = calculate();
double clampedA = a;
if(clampedA > MY_MAX)
clampedA = MY_MAX;
else if(clampedA < 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#4353722Answer by Niklas for Good or Bad C++ Idiom - Objects used purely for constructor/destructor?Niklas2009-01-12T13:14:44Z2009-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#4235502Answer by Niklas for What are the tell-tale signs in an interview that a developer is not competent?Niklas2009-01-08T07:53:53Z2009-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#3586831Answer by Niklas for Learning SVG ?Niklas2008-12-11T08:22:48Z2008-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-c6What does a const pointer-to-pointer mean in C and in C++?Niklas2008-12-03T09:18:44Z2008-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#3051830Answer by Niklas for Is there an optimal byte size for sending data over a network?Niklas2008-11-20T12:45:20Z2008-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#17268310Answer by Niklas for What real life bad habits has programming given you?Niklas2008-10-05T21:22:47Z2008-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#1419291Answer by Niklas for How do I rename an entire project in VC++ 2005Niklas2008-09-26T20:55:25Z2008-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#1418462Answer by Niklas for What's your favorite C++0x feature?Niklas2008-09-26T20:41:08Z2008-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-cComment by Niklas on pushing a string onto a stack in CNiklas2009-12-17T08:28:14Z2009-12-17T08:28:14ZPersonally, I think they are two different valid questions...http://stackoverflow.com/questions/1905237/where-in-memory-is-vtable-stored/1905248#1905248Comment by Niklas on Where in memory is vtable stored?Niklas2009-12-15T08:58:02Z2009-12-15T08:58:02ZThe 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-wayComment by Niklas on How to design multithread systems in a engineer way?Niklas2009-12-14T08:56:54Z2009-12-14T08:56:54ZDuplicate? <a href="http://stackoverflow.com/questions/164187/" rel="nofollow">stackoverflow.com/questions/164187</a>http://stackoverflow.com/questions/1887342/javascript-date-field-utility/1887345#1887345Comment by Niklas on Javascript date field utilityNiklas2009-12-11T13:12:26Z2009-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#1763579Comment by Niklas on Python: asynchronous tcp socketserverNiklas2009-11-20T09:42:19Z2009-11-20T09:42:19ZI 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-differencesComment by Niklas on UDP Listener XP/Vista/Win7 Differences?Niklas2009-11-03T12:26:55Z2009-11-03T12:26:55ZSame .NET version on all machines?http://stackoverflow.com/questions/1554142/django-form-with-just-a-booleanfield/1555759#1555759Comment by Niklas on Django form with just a BooleanFieldNiklas2009-10-13T10:00:26Z2009-10-13T10:00:26ZActually, 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/…</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-booleanfieldComment by Niklas on Django form with just a BooleanFieldNiklas2009-10-12T12:05:43Z2009-10-12T12:05:43ZI 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#172683Comment by Niklas on What real life bad habits has programming given you?Niklas2009-08-06T13:47:08Z2009-08-06T13:47:08ZIn 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#1081817Comment by Niklas on Developing trading applicationsNiklas2009-07-04T10:03:44Z2009-07-04T10:03:44ZDoesn't answer the question, but it's very sane advice...http://stackoverflow.com/questions/1081868/destructor-problem/1081905#1081905Comment by Niklas on destructor problemNiklas2009-07-04T09:56:11Z2009-07-04T09:56:11ZI'd also suggest changing the signature to void cardHand::addCard(const playingCard& card)http://stackoverflow.com/questions/986048/detect-window-close-outside-of-wndproc/986073#986073Comment by Niklas on Detect window close outside of wndproc?Niklas2009-06-16T05:03:39Z2009-06-16T05:03:39ZThe app drives the script engine on its window thread, hence the problem.http://stackoverflow.com/questions/986048/detect-window-close-outside-of-wndproc/991574#991574Comment by Niklas on Detect window close outside of wndproc?Niklas2009-06-16T05:01:21Z2009-06-16T05:01:21ZThat is obviously the best solution, but unfortunately not what I asked. See "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?".http://stackoverflow.com/questions/986048/detect-window-close-outside-of-wndproc/986073#986073Comment by Niklas on Detect window close outside of wndproc?Niklas2009-06-12T12:29:22Z2009-06-12T12:29:22ZThe 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#986266Comment by Niklas on Detect window close outside of wndproc?Niklas2009-06-12T12:12:36Z2009-06-12T12:12:36ZIt 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.