User Niklas Winde - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T19:10:20Z http://stackoverflow.com/feeds/user/9077 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1721112/can-memory-leaks-in-net-lead-to-a-corrupted-disk-error-creating-window-handle 0 Can memory leaks in .NET lead to a corrupted disk? (Error creating window handle) Niklas Winde 2009-11-12T09:48:58Z 2009-11-12T10:32:12Z <p>Related to <a href="http://stackoverflow.com/questions/222649/winforms-issue-error-creating-window-handle" title="this">this question</a> (I too have had this error in an application). "Error creating window handle" due to too many non disposed controls.</p> <p>Can this lead to Windows crashing and refusing to start, even refusing to be reinstalled, even when reformatting the drive (only quick reformat)? Because that seems to have happened to me.</p> <p>Edit after answers and comments: I should have mentioned, this has happened to two identical machines (make and age) and another younger of different make. So with the first machines, hard disk failure is not unlikely but with the third, newer, getting the exact same problem has me wondering.</p> http://stackoverflow.com/questions/1699846/form-redesigning-itself-in-delphi-2006 0 Form redesigning itself in Delphi 2006 Niklas Winde 2009-11-09T08:56:30Z 2009-11-09T08:56:30Z <p>I have a form with a lot of components overlapping each other in a Delphi 2006 application. Sometimes when viewing the form designer the form gets redesigned with components moving around. What may cause this and how do I stop it?</p> <p>It seems to happen when part of the form is covered with some part of Delphi itself, like the message view. Some components live inside other components and are docked to fill them. </p> http://stackoverflow.com/questions/511682/mouseup-event-interrupted 0 MouseUp event interrupted? Niklas Winde 2009-02-04T14:52:36Z 2009-10-27T18:00:03Z <p>I'm making a custom control with a panel. I want to be able to drag and drop it so I've implemented that in the MouseDown event of my control. But I want the thing to react when you start drag to give a little feedback to the user. So in the MouseDown even I change the color. Then I want to change it back in the MouseUp event.</p> <p>My control is not installed into VS2008 but just a class I've written that I instanciate at run time (I don't know in advance how many I need and so on). Now, my control exposes a MouseDown event so as to be able to be dragged. When I subscribe to this event from the parent application to actually perform the drag and drop my control is not repainted on its MouseUp event! In fact, the MouseUp is never invoked. If, on the other hand, I don't subscribe to the event in the parent app it works as intended.</p> <p>What's going on? Is the parent interrupting the flow so that the MouseUp event never fires in my control? How do I get around this?</p> http://stackoverflow.com/questions/1599484/apdcomport-reporting-ecommnotopen-when-calling-processcommunications 0 ApdComport reporting ECommNotOpen when calling ProcessCommunications Niklas Winde 2009-10-21T08:37:03Z 2009-10-21T08:37:03Z <p>I have a fairly complex application in Delphi 2006 that communicates through an ApdComport using a separate form in another thread. The communication used to fail quite a lot and I found a couple of calls to Application.Processmessages in the loops and reconstructed it using the ApdComport.ProcessCommunications instead. </p> <p>I don't really want to rearrange the code to use event handlers instead at this point.</p> <p>I also want to make the communication fast so I call ProcessCommunications until there is a CharReady. Sometimes ProcessCommunications raises an ECommNotOpen exception with the message "ie_NOpen - device not open". I've been unable to find info about this in the help or on the web.</p> <p>I tried putting an ApdComport on a new form in a new project and call its ProcessCommunications frequently and could not get it to crash. It did not do any real communication though.</p> <p>I have tried checking that the output buffer has enough free space before sending stuff but it always has and the problem is still there.</p> <p>So what is happening? Where should I look and what can I do?</p> http://stackoverflow.com/questions/128705/do-you-ever-code-just-for-fun 22 Do you ever code just for fun? Niklas Winde 2008-09-24T17:55:22Z 2009-07-26T18:38:28Z <p>Do you have projects you work on in your spare time just for the fun of it?</p> <ul> <li>What do you do?</li> <li>What techniques/technologies do you use? Is this a reason for the project?</li> <li>Have you gained something? Has it become a real product you make money from?</li> </ul> http://stackoverflow.com/questions/556147/how-to-quickly-and-easily-embed-fonts-in-winforms-app-in-c 1 How to quickly and easily embed fonts in winforms app in C# Niklas Winde 2009-02-17T09:59:41Z 2009-06-26T11:40:55Z <p>This is probably noob territory but what the heck:</p> <p>I want to embed fonts in my winforms application so that I don't have to worry about them being installed on the machine. I've searched a bit on the MSDN site and found a few hints about using native Windows API calls, for instance Michael Caplans (sp?) tutorial linked to by Scott Hanselman. Now, do I really have to go through all that trouble? Can't I just use the resource part of my app?</p> <p>If not I'll probably go the installing route. In that case, can I do that programmatically? By just copying the font file to the Windows\Fonts folder?</p> <p>Edit: I am aware of licencing issues, thanks for the concern though.</p> http://stackoverflow.com/questions/999555/recording-programming-time-write-it-or-download-it/999868#999868 0 Answer by Niklas Winde for Recording Programming Time - Write it or download it? Niklas Winde 2009-06-16T06:46:45Z 2009-06-16T06:46:45Z <p>I heard about Timesnapper on Hanselminutes: <a href="http://www.timesnapper.com/" rel="nofollow">get it here.</a> It records your activities into pictures that you can analyse later for time sheets and stuff.</p> http://stackoverflow.com/questions/370698/delphi-7-and-events 1 Delphi 7 and events Niklas Winde 2008-12-16T08:22:40Z 2009-06-09T22:13:41Z <p>I'm researching a bug that looks like some kind of timing issue and so I'm a bit curious about how events work in Delphi 7. What happens is we get some data sent to our application through a COM interface and it gets handled in an event raised from the COM thread. It seems like the event, which has quite a bit of code in it, takes longer and longer to execute and after a while the entire application crashes. There are calls to graphics and stuffing into large arrays inside the event that might affect time. I have been unable to spot any significant increase in memory usage and have not had opportunity to run any profilers to check for leaks yet. Also, the obvious thing to test would be to strip the event of all the code in it just to see if we can run for a longer period of time.</p> <p>Are events serial or parallell in Delphi, that is, if I get a new event while one is executing -what happens? Is it run in parallell on some kind of automatic thread, is it ignored or is it queued up?</p> <p>If it is queued up, how many can I have in the queue before the application crashes?</p> <p>Does indexing into a large array take longer the further into it you are? Even if it's of a fixed size? I don't think it should so I'm looking for leaks and allocations that take time. If I get sent an object through the event, should I dispose of it within the event or in the "calling" code?</p> <p>What things usually do not scale well in Delphi? What can I look for that would increase in execution time?</p> <p>Finally, since this is COM related, any pointers to common pitfalls in COM are appreciated although I realize this is tricky. I do have a grip on co-initialize though.</p> http://stackoverflow.com/questions/970195/debugging-in-failing-method-when-invoked-from-other-thread 0 Debugging in failing method when invoked from other thread Niklas Winde 2009-06-09T13:50:20Z 2009-06-09T14:47:34Z <p>I have code like the one in <a href="http://stackoverflow.com/questions/22356/cleanest-way-to-invoke-cross-thread-events">this</a> question, basically a UI-thread that gets updated from another thread and uses <code>InvokeRequired()</code> and <code>Invoke(..)</code>. Now, if the method fails in the work part, the debugger stops on the <code>Invoke(..)</code> line -can I make it show me the line where it actually failed like it usually does?</p> http://stackoverflow.com/questions/78744/how-to-start-programming-microcontroller/750563#750563 0 Answer by Niklas Winde for How to start programming microcontroller? Niklas Winde 2009-04-15T06:50:16Z 2009-04-15T06:50:16Z <p>On a side note:<br /> If you don't want to get your hands dirty soldering a lot of stuff or are not electrically inclined to do so (like me), try looking into <a href="http://en.wikipedia.org/wiki/Programmable%5Flogic%5Fcontroller" rel="nofollow">PLC's</a>.<br /> They are industrial hardware controllers with modules for almost every task such as digital IO's, analog IO's, stepper motor controllers, serial IO, ethernet etc. You can program them in different ways, assembler like, graphical and a text editor with code looking like a mix of Pascal and Basic. They have built in multitasking and usually perform pretty well but they are a bit more expensive than a regular microcontroller. I always recommend <a href="http://www.wago.us/" rel="nofollow">Wago</a> and their 750-841 controller.</p> http://stackoverflow.com/questions/637617/what-can-make-a-net-app-freeze-the-computer 1 What can make a .NET app freeze the computer? Niklas Winde 2009-03-12T07:01:50Z 2009-03-12T08:07:53Z <p>I know this is probably the canonical "It depends..." question but I'd appreciate any pointers as to where to start looking.</p> <p>I have a client/server app talking over ethernet. In one computer I run the server and a client and on another just the client. One runs Vista and one runs XP. After an uptime of about 3 weeks the entire computer freezes and nothing works, not mouse, not keyboard, nothing -just power off. Every ten seconds the server sends a ping message to see if the clients are alive, other than that just a few small messages go back and forth every day.</p> <p>I'm trying to find out if it's me causing it or something else. I've started a session and after a few days I thought I'd check for strange increases in memory use but beyond that I have very few ideas.</p> http://stackoverflow.com/questions/564990/porting-a-net-3-5-application-to-a-portable-device 0 Porting a .NET 3.5 application to a portable device Niklas Winde 2009-02-19T12:03:23Z 2009-02-25T00:00:54Z <p>I have written a server/client application using sockets in C# for .NET 3.5. I'm interested in porting the client part to some kind of mobile device and am pondering the best way. The client is actually an underlying library and a GUI depending heavily on touch interface capabilities.</p> <p>As I see it I have a few options:</p> <ol> <li>Just get an EEE PC and run it on, that's kind of portable but I loose the touch part</li> <li>Rebuild the library for mobile platforms and make a new, reduced, GUI app</li> <li>Start a web server and make some kind of web interface to run on iPhones and what not</li> </ol> <p>What would be the best route? What problems can I run into in my alternatives above? I'd really prefer alternative 1 or 2 over 3 because of how the server is currently done and the fact that I know nothing about webservers or ASP.NET. Oh and I'd like to stay with the environment I'm alredy in, that is .NET, so no Ruby on Rails suggestions please. (Not saying Ruby is bad or anything, I just don't know it and don't have the time to learn).</p> http://stackoverflow.com/questions/564952/single-socket-multiple-clients-architecture/565114#565114 1 Answer by Niklas Winde for Single socket multiple clients architecture Niklas Winde 2009-02-19T12:35:39Z 2009-02-19T12:35:39Z <p>I did this exact thing (if I understand you correctly). I have a server that connects to some target devices over sockets and then clients hook up to the server to talk to different target systems. Is this (kind of) what you want? I have multiple clients talking to the same socket through the server.</p> <p>In my server I keep a list of connected clients and a list of connected targets. When a client requests a target I add it to a matrix that is essentially a dictionary of connections because several clients can talk to one target at the same time. The server then pumps messages between clients and targets entirely asynchrounously and I use transaction IDs to keep track of the messages. So that when a target answers a request the server knows to which client to send the answer.</p> <p>I'm not sure this is what you want but maybe what I did will help you a little on your way anyway. If I'm on the right track I can elaborate further.</p> http://stackoverflow.com/questions/482393/how-to-be-effective-as-a-part-time-programmer/555869#555869 2 Answer by Niklas Winde for How to be effective as a part-time programmer? Niklas Winde 2009-02-17T08:05:45Z 2009-02-17T08:05:45Z <p>Apart from the great tips above my number one is <strong>seclude yourself!</strong> I've been working part time on a hobby project for quite a while now and this is what I always try to do.</p> <p>Decide how much time you want to work on your thing and when you do, make sure you disconnect from <em>everything</em>. Let the mom take the kid, don't bring the phone, unplug the internet, go into a room and close the door around you telling everyone not to disturb you short of a fire or disaster occuring. This way you easily get into the flow and stay in there and a few hours later you get out having actually gotten quite a few things done.</p> <p>This is universally good I think. Other things I do that might not be your cup of tea are:</p> <p>Keep things in your head until you implement them, that way you can change them very quickly and you don't spend time on writing detailed things down and going over notes. If something pops up when it's not work time, think about it a little and then push it back into the back of your head, it'll come up again when it's time to work. Do keep a list of what you plan however, but just as keywords, no details. Checking things off a list is a great feeling.</p> <p>Never mind time to market. It might be important, but it most likely isn't. Do what you believe in and do it well, no one likes a bad and rushed product. The second comer may very well take the lion part of the market if he has the better thing, there are numerous examples out there.</p> <p>Avoid spending too much time on things only you care about. You're just one guy and have only so much (part) time. Get together with some people and have them test the thing you're building, listen carefully to what they say so you don't build something only you will ever want to use.</p> http://stackoverflow.com/questions/519219/what-to-bring-to-a-programming-interview/519516#519516 0 Answer by Niklas Winde for What to bring to a programming interview? Niklas Winde 2009-02-06T08:11:18Z 2009-02-06T08:11:18Z <p>Bring some questions to show interest in the employer and their business!</p> http://stackoverflow.com/questions/166742/robot-simulation-environments/486794#486794 1 Answer by Niklas Winde for Robot simulation environments Niklas Winde 2009-01-28T07:45:27Z 2009-01-28T07:45:27Z <p>ABB has a quite a solution called RobotStudio for simulating their huge industrial robots. I don't think it's free and I don't guess you'll get much fun out of it but it's quite impressive. <a href="http://www.abb.com/product/seitp327/78fb236cae7e605dc1256f1e002a892c.aspx" rel="nofollow">Here's a page about it</a></p> http://stackoverflow.com/questions/472030/cool-project-to-use-a-genetic-algorithm-for/472335#472335 1 Answer by Niklas Winde for cool project to use a genetic algorithm for? Niklas Winde 2009-01-23T09:23:26Z 2009-01-23T09:23:26Z <p>It has been used in complex synthesizers to generate sound patches (e.g. the <a href="http://www.nordkeyboards.com/main.asp?tm=Products&amp;clpm=Nord_Modular_G2&amp;clnmm=Information" rel="nofollow">Clavia Nord Modular G2</a>) I'd try it for other machines as well, the Yamaha DX7 comes to mind but I guess there are quite a few software alternatives out there. Or image generation.</p> <p>Read up on the theory behind the patch algorithms in a paper by <a href="http://www.id.gu.se/palle/dokt/soundsunheardof.htm" rel="nofollow">Palle Dahlstedt</a>. It seems to be down at the moment though...</p> http://stackoverflow.com/questions/456891/how-do-i-set-the-time-out-of-a-socket-connect-call 1 How do I set the time out of a socket.connect() call? Niklas Winde 2009-01-19T08:33:25Z 2009-01-19T08:48:52Z <p>I have an app that connects to a host that might be down. If the host is down I don't want to wait for the 30 or so seconds it takes to time out. I'm using blocking sockets at the moment.</p> <p>I've been looking at socket.poll() and socket.select() but I'd rather just have a time setting on the socket. I don't mind if it's a setting I have to do somewhere in the system. Also, I seemed to understand that poll and select don't work with connection oriented communication -is this correct?</p> <p>If this is absolutely impossible, what is a nice way to get the results I want using poll, select or some other technique?</p> http://stackoverflow.com/questions/445871/want-to-read-a-file-to-a-tstringlist/445894#445894 1 Answer by Niklas Winde for Want to read a file to a TStringList Niklas Winde 2009-01-15T07:05:25Z 2009-01-15T07:05:25Z <p>Also, try..except and try..finally are good friends at these times. Encapsulate your file reading codde in these types of blocks and tell the user about the problem that arises.</p> http://stackoverflow.com/questions/438196/what-happens-to-sockets-when-i-unplug-a-network-cable 6 What happens to sockets when I unplug a network cable? Niklas Winde 2009-01-13T07:19:24Z 2009-01-13T07:48:08Z <p>I have three applications that talk to each other using sockets. They can all live on their own machines but they can also share a machine. Right now I'm having two of them on the same and the third on its own machine. I'm trying to make my communication bullet proof so I unplug cables and kill the applications to make sure everything works as intended.</p> <p>Here's a quick sketch of the thing:</p> <p><img src="http://i40.tinypic.com/9vch86.png" alt="alt text" /></p> <p>Now, when I unplug the network cable to PC2 (the red connection "Con B"), the internal connection stops talking (the blue connection "Con A"). I send stuff from "App 1" on the socket that never gets to "App 2".</p> <p>I have made a mechanism that discovers this and disconnects and then reconnects and after that I can unplug the cable all I want and "Con A" just keeps working. It's only that first time.</p> <p>I have confirmed having communication through "Con A" before disconnecting "Con B".<br /> I connect and reconnect exactly the same way, it's the same code, so there's no difference.</p> <p>What's happening?</p> <p>Additional information trigged by answers: PC 1 and PC 2 share addresses down to the last byte.<br /> I have an internal keep alive mechanism, I send a message and expect a response every 10 seconds.<br /> When I kill App 3, this does not happen, only when unplugging the cable.</p> http://stackoverflow.com/questions/348946/preferred-it-podcast-listening-environment/386002#386002 0 Answer by Niklas Winde for Preferred IT podcast listening environment? Niklas Winde 2008-12-22T11:02:54Z 2008-12-22T11:02:54Z <p>I listen on the work out bike and during my 15 minute travel to work as well as when I wash my car weekly. All those add up to a few hours worth of listening time per week which is almost more than I can muster insterest in podcasts for! So I alternate with music.</p> http://stackoverflow.com/questions/370698/delphi-7-and-events/377127#377127 0 Answer by Niklas Winde for Delphi 7 and events Niklas Winde 2008-12-18T07:39:44Z 2008-12-18T07:39:44Z <p>Did some research and got a few pointers, particularly to my first question:</p> <p><em>Are events serial or parallell in Delphi, that is, if I get a new event while one is executing -what happens? Is it run in parallell on some kind of automatic thread, is it ignored or is it queued up? If it is queued up, how many can I have in the queue before the application crashes?</em></p> <p>Well, obviously events are as synchronous as in everything else, or should I say serial. You can not get more events as you process one since that event essentially is a function call.</p> <p>In the event handler, some graphic components are handled. Since the event is raised on another thread this is bad. I either need to make some updating mechanism on the graphics that lies on the thread that created the graphics or make a thread switch in the event.</p> <p>Also, tests indicate that it in fact is the update of the graphics that is taking increasingly longer time, thus a refactoring of the graphics handling sounds like a good path to try at first.</p> http://stackoverflow.com/questions/320645/check-status-of-process 3 Check status of process Niklas Winde 2008-11-26T13:06:21Z 2008-11-26T13:20:10Z <p>I want to programmatically verify the status of an application to see if it has crashed or stopped. I know how to see if the process exists in C# but can I also see if it is "Not responding"?</p> http://stackoverflow.com/questions/186718/delphi-7-exception-not-caught 2 Delphi 7 exception not caught Niklas Winde 2008-10-09T10:49:34Z 2008-11-14T19:37:39Z <p>I have some really complicated legacy code I've been working on that crashes when collecting big chunks of data. I've been unable to find the exact reason for the crashes and am trying different ways to solve it or at least recover nicely. The last thing I did was enclose the crashing code in a</p> <pre><code>try ... except cleanup(); end; </code></pre> <p>just to make it behave. But the cleanup never gets done. Under what circumstances does an exception not get caught? This might be due to some memory overflow or something since the app is collecting quite a bit of data.</p> <p>Oh and the exception I got before adding the <code>try</code> was "Access violation" (what else?) and the CPU window points to very low addresses. Any ideas or pointers would be much appreciated!</p> http://stackoverflow.com/questions/224804/does-regex-comparisons-consume-lots-of-resources/224825#224825 0 Answer by Niklas Winde for does regex comparisons consume lots of resources? Niklas Winde 2008-10-22T08:14:42Z 2008-10-22T08:14:42Z <p>I once made a program that analyzed a lot of text (a big code base, >300k lines). First I used regex but when I switched to using regular string functions it got a lot faster, like taking 40% of the time of the regex version. So while of course it depends, my thing got a lot faster.</p> http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/224775#224775 1 Answer by Niklas Winde for What was the strangest coding standard rule that you were forced to follow? Niklas Winde 2008-10-22T07:44:18Z 2008-10-22T07:44:18Z <p>"The guys who wrote the compiler are probably a lot smarter than you so don't try something clever" is what one guide line document said (not quite literally).</p> http://stackoverflow.com/questions/224466/avoiding-mixup-of-language-details/224769#224769 1 Answer by Niklas Winde for Avoiding Mixup of Language Details Niklas Winde 2008-10-22T07:41:38Z 2008-10-22T07:41:38Z <p>To me, the hardest part isn't the syntax -usually you get into the mode when looking at the code you're working on. The really hard part is remembering the library of the language so you don't go inventing the wheel over and over again. Now if only people would organize their help files so it was easy to search for particular stuff in the library.</p> http://stackoverflow.com/questions/150011/precision-of-reals-through-writeln-readln-in-delphi 1 Precision of reals through writeln/readln in Delphi Niklas Winde 2008-09-29T18:29:10Z 2008-10-16T04:41:06Z <p>My clients application exports and imports quite a few variables of type real through a text file using writeln and readln. I've tried to increase the width of the fields written so the code looks like: </p> <pre><code>writeln(file, exportRealvalue:30); //using excess width of field .... readln(file, importRealvalue); </code></pre> <p>When I export and then import and export again and compare the files I get a difference in the last two digits, e.g (might be off on the actual number of digits here but you get it): </p> <pre><code>-1.23456789012E-0002 -1.23456789034E-0002 </code></pre> <p>This actually makes a difference in the app so the client wants to know what I can do about it. Now I'm not sure it's only the write/read that does it but I thought I'd throw a quick question out there before I dive into the hey stack again. Do I need to go binary on this?</p> <p>This is not an app dealing with currency or something, I just write and read the values to/from file. I know floating points are a bit strange sometimes and I thought one of the routines (writeln/readln) may have some funny business going on.</p> http://stackoverflow.com/questions/119749/problems-with-ironpython-studio-and-picturebox 1 Problems with IronPython Studio and PictureBox Niklas Winde 2008-09-23T08:05:33Z 2008-10-14T19:13:59Z <p>Right, so I'm having a go at Iron Python Studio as I'm quite familiar with VS2005 and want to try Python with an integrated GUI designer. But as soon as I add a PictureBox I'm in trouble. When running the project I get complaints about BeginInit and soon enough the form designer stops working.<br /> Is this because I'm running .NET 3.5 or some other compatibility issue? Couldn't find anything at the <a href="http://www.codeplex.com/IronPythonStudio" rel="nofollow">Iron Python Studio site</a></p> http://stackoverflow.com/questions/200248/what-are-some-possibly-unique-development-standards-in-your-country/200359#200359 1 Answer by Niklas Winde for What are some possibly unique development standards in your country? Niklas Winde 2008-10-14T08:17:05Z 2008-10-14T08:17:05Z <p>I'm not even sure if this differs much from what you do in the US but here goes:</p> <p>At least here in Sweden companies tend to have a mix of English and Swedish versions of their OS so localization will come and bite you if you don't keep your eyes open about it. Like if floats are written with a comma or a period. And as Swedish is a bit of a minority language we tend to build language support into our applications very early on. Customized error messages to protect from cryptic ones in English or the other way around if our entire application is in English.</p> <p>Code comments and documentation is usually in English everywhere I've worked. Variable names are also usually English so no difference there.</p> http://stackoverflow.com/questions/970195/debugging-in-failing-method-when-invoked-from-other-thread/970495#970495 Comment by Niklas Winde on Debugging in failing method when invoked from other thread Niklas Winde 2009-06-16T06:10:10Z 2009-06-16T06:10:10Z This did not work unfortunatly http://stackoverflow.com/questions/970195/debugging-in-failing-method-when-invoked-from-other-thread Comment by Niklas Winde on Debugging in failing method when invoked from other thread Niklas Winde 2009-06-09T14:12:31Z 2009-06-09T14:12:31Z Oh, sorry -I meant visualstudio2008, I actually even chose a suggestion. Must have gotten the space in there by accident. http://stackoverflow.com/questions/637617/what-can-make-a-net-app-freeze-the-computer/637630#637630 Comment by Niklas Winde on What can make a .NET app freeze the computer? Niklas Winde 2009-03-12T07:18:20Z 2009-03-12T07:18:20Z CPU usage is very low, below 10% during use and below 3% during idle. OS logs is a good idea. Are there other and better perfmons than the task manager in XP? http://stackoverflow.com/questions/637617/what-can-make-a-net-app-freeze-the-computer/637631#637631 Comment by Niklas Winde on What can make a .NET app freeze the computer? Niklas Winde 2009-03-12T07:17:10Z 2009-03-12T07:17:10Z I have done this. Actually the sleep amounts to something like 14ms depending on the computer I run it on but it does release the CPU. http://stackoverflow.com/questions/564990/porting-a-net-3-5-application-to-a-portable-device/584055#584055 Comment by Niklas Winde on Porting a .NET 3.5 application to a portable device Niklas Winde 2009-02-25T13:29:59Z 2009-02-25T13:29:59Z The only requirement for the mobile device as of now is that it is mobile :) I am not targeting a particular market where I expect people to have a certain device, it's a closed system where I provide the device. http://stackoverflow.com/questions/138994/is-there-a-performance-difference-between-inci-and-i-i-1-in-delphi Comment by Niklas Winde on Is there a performance difference between inc(i) and i := i + 1 in Delphi? Niklas Winde 2009-02-16T07:14:29Z 2009-02-16T07:14:29Z Hehe, well I ran a test and that was the result so I just cut and pasted it, hence the large number of digits :) http://stackoverflow.com/questions/511682/mouseup-event-interrupted/516304#516304 Comment by Niklas Winde on MouseUp event interrupted? Niklas Winde 2009-02-06T08:00:25Z 2009-02-06T08:00:25Z It's a normal Windows form. Thanks for your response -I'll try that during the weekend and if I don't succeed I'll post some code of what I'm doing. http://stackoverflow.com/questions/511682/mouseup-event-interrupted/513190#513190 Comment by Niklas Winde on MouseUp event interrupted? Niklas Winde 2009-02-05T06:50:58Z 2009-02-05T06:50:58Z What do you mean by capture? http://stackoverflow.com/questions/511682/mouseup-event-interrupted Comment by Niklas Winde on MouseUp event interrupted? Niklas Winde 2009-02-04T16:27:59Z 2009-02-04T16:27:59Z I might be able to but I feel it's a bit complicated. I'll wait a bit more for answers first and see if I can isolate the code. http://stackoverflow.com/questions/195285/what-stupid-policies-affecting-developers-has-your-company-introduced/195440#195440 Comment by Niklas Winde on What stupid policies affecting developers has your company introduced? Niklas Winde 2008-10-12T15:01:50Z 2008-10-12T15:01:50Z Yes, mechanical people just don't get programming, that is my experience as well. They are just not used to think about things they cannot see. http://stackoverflow.com/questions/186718/delphi-7-exception-not-caught/186956#186956 Comment by Niklas Winde on Delphi 7 exception not caught Niklas Winde 2008-10-09T12:47:02Z 2008-10-09T12:47:02Z This seems close to the truth, I'm investigating further. Thanks! http://stackoverflow.com/questions/126797/is-there-a-style-guide-for-guis-somewhere/126842#126842 Comment by Niklas Winde on Is there a style guide for GUI's somewhere? Niklas Winde 2008-09-24T12:32:56Z 2008-09-24T12:32:56Z Read it already but thanks -good advice! http://stackoverflow.com/questions/126797/is-there-a-style-guide-for-guis-somewhere/126823#126823 Comment by Niklas Winde on Is there a style guide for GUI's somewhere? Niklas Winde 2008-09-24T12:28:30Z 2008-09-24T12:28:30Z It's in the batch of books I just ordered :) http://stackoverflow.com/questions/80645/best-way-to-make-events-asynchronous-in-c/80686#80686 Comment by Niklas Winde on Best way to make events asynchronous in C# Niklas Winde 2008-09-17T09:59:48Z 2008-09-17T09:59:48Z This fitted the best with my application, throwing the loop in a backgroundworker doesn't quite fit the way I want to handle this.