User open-collar - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T02:08:51Z http://stackoverflow.com/feeds/user/21686 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/888865/problem-with-icon-on-creating-new-maximized-mdi-child-form-in-net/1453856#1453856 0 Answer by open-collar for Problem with icon on creating new maximized MDI child form in .NET open-collar 2009-09-21T10:34:29Z 2009-09-21T10:34:29Z <p>I found that the only solution was to deactivate and then reactivate the MDI child:</p> <pre><code>document.Show(); // Work-around for error in WinForms that causes MDI children to be loaded with the default .NET icon when opened maximised. ActivateMdiChild(null); ActivateMdiChild(document); </code></pre> <p>This is the solution given in <a href="http://social.msdn.microsoft.com/Forums/en-US/winforms/thread/bf71c250-ae36-4d75-a6ad-4058e3fac9da" rel="nofollow">this reply on MSDN forums</a> and it worked for me.</p> http://stackoverflow.com/questions/878598/how-to-detect-net-application-type 3 How to detect .Net application type? open-collar 2009-05-18T16:36:21Z 2009-05-18T17:06:41Z <p>I have a library that needs to respond to exceptions in different ways depending on whether it is running in a Console app, WinForms, AspNet or Windows Service. I have experimented with looking at various properties in the System.Windows.Forms and System.Web namespaces, but I can't find a reliable way of detecting exactly which kind of application is hosting my library. Has anyone been here before? Does anyone have a reliable solution?</p> http://stackoverflow.com/questions/768543/question-about-c-optimizer/768707#768707 0 Answer by open-collar for Question about c# optimizer. open-collar 2009-04-20T15:12:04Z 2009-04-20T15:12:04Z <p>Assuming your type is an object (reference) type then <em>simpleName</em> will end up containing a reference to the object returned by <em>classWithLongName.otherLongName</em>. If you are then going to make lots of calls to properties on that object then you may get a performance improvement, especially if <em>otherLongName</em> is a property as opposed to a field.</p> http://stackoverflow.com/questions/768506/what-are-finalisers-for 5 What are finalisers for? open-collar 2009-04-20T14:27:43Z 2009-04-20T14:37:33Z <p>I have been programming in .NET for four years (mostly C#) and I use IDiposable extensively, but I am yet to find a need for a finaliser. What are finalisers for?</p> http://stackoverflow.com/questions/565262/ab-using-languages/565352#565352 0 Answer by open-collar for Ab-using languages open-collar 2009-02-19T13:42:59Z 2009-02-19T13:42:59Z <p>I often "abuse" using blocks. I think they provide a great way of defining scope. I have a whole series of objects that I use for capture and restoring state (e.g. of Combo boxes or the mouse pointer) during operations that may change the state. I also use them for creating and dropping database connections.</p> <p>E.g.:</p> <pre><code>using(_cursorStack.ChangeCursor(System.Windows.Forms.Cursors.WaitCursor)) { ... } </code></pre> http://stackoverflow.com/questions/432922/significant-new-inventions-in-computing-since-1980/450423#450423 0 Answer by open-collar for Significant new inventions in computing since 1980 open-collar 2009-01-16T13:38:08Z 2009-01-16T13:38:08Z <p>The massive increases in processor speed that have occurred over the last 30 years can't be overlooked. All manner of clever ideas such as pipelining and pre-emptive branching, as well as improvements in electronic side of processor design, mean that programmers today can worry more about the design and maintainability of their programs and worry less about counting clock-cycles.</p> http://stackoverflow.com/questions/304836/detect-citrix-application-mode/416275#416275 3 Answer by open-collar for Detect citrix "application mode"? open-collar 2009-01-06T12:04:50Z 2009-01-06T12:04:50Z <p>This works for me:</p> <pre><code>return System.Windows.Forms.SystemInformation.TerminalServerSession; </code></pre> http://stackoverflow.com/questions/314268/how-best-to-communicate-between-appdomains 5 How best to communicate between AppDomains? open-collar 2008-11-24T14:26:07Z 2008-11-26T00:13:40Z <p>I have an application that needs to send a moderately high volume of messages between a number of AppDomains. I know that I could implement this using remoting, but I have also noticed that there are cross-domain delegates. Has anyone looked at this kind of problem?</p> http://stackoverflow.com/questions/314095/make-visual-studio-understand-camelcase-when-hitting-ctrl-and-cursor-keys/314129#314129 1 Answer by open-collar for Make Visual Studio understand CamelCase when hitting ctrl and cursor keys open-collar 2008-11-24T13:28:53Z 2008-11-24T13:28:53Z <p><a href="http://www.jetbrains.com/resharper/index.html" rel="nofollow">Resharper</a> does that. I suppose you could write your own addin to do the same.</p> http://stackoverflow.com/questions/9033/hidden-features-of-c/300100#300100 11 Answer by open-collar for Hidden Features of C#? open-collar 2008-11-18T20:51:07Z 2008-11-18T20:51:07Z <p>Several people have mentioned <em>using</em> blocks, but I think they are much more useful than people have realised. Think of them as the poor man's AOP tool. I have a host of simple objects that capture state in the constructor and then restore it in the <em>Dispose()</em> method. That allows me to wrap a piece of functionality in a <em>using</em> block and be sure that the state is restore at the end. For example:</p> <pre><code>using(new CursorState(this, BusyCursor)); { // Do stuff } </code></pre> <p><em>CursorState</em> captures the current cursor being used by form, then sets the form to use the cursor supplied. At the end it restores the original cursor. I do loads of things like this, for example capturing the selections and current row on a grid before refreshing and so on.</p> http://stackoverflow.com/questions/878598/how-to-detect-net-application-type Comment by open-collar on How to detect .Net application type? open-collar 2009-05-19T09:38:48Z 2009-05-19T09:38:48Z The solution I have used combines the answers supplied by Arul and Josh, and these links: <a href="http://blogs.msdn.com/kstanton/archive/2004/03/31/105060.aspx" rel="nofollow">blogs.msdn.com/kstanton/archive/&hellip;</a>, <a href="http://www.codeguru.com/cpp/w-p/system/misc/article.php/c2897" rel="nofollow">codeguru.com/cpp/w-p/&hellip;</a>. So first I check to see if there is an ASP context, if there isn't then I load the main app binary and check he flags in the header to see if it targeted at the Windows or Console subsystems. I can supply a code sample if anyone is interested. http://stackoverflow.com/questions/878598/how-to-detect-net-application-type/878751#878751 Comment by open-collar on How to detect .Net application type? open-collar 2009-05-18T20:41:44Z 2009-05-18T20:41:44Z This is closest to what I am trying to achieve. This link seems to provide a reasonable amount of information about whether or not a binary is a console app.: <a href="http://www.codeguru.com/cpp/w-p/system/misc/article.php/c2897" rel="nofollow">codeguru.com/cpp/w-p/&hellip;</a>. I can't rely on the ASPNET user being used - we run using all kind of service accounts for various purposes. I think in conjunction with Josh's answer below I can probably come up with a reasonable stab at an answer. http://stackoverflow.com/questions/878598/how-to-detect-net-application-type/878609#878609 Comment by open-collar on How to detect .Net application type? open-collar 2009-05-18T16:47:12Z 2009-05-18T16:47:12Z In all cases an email is sent with details to a Jira server. But in Windows a screenshot is captured and the user is shown a dialogue. In console apps details are written to the console. I have mentioned error handling here, but there may well be other purposes too. http://stackoverflow.com/questions/878598/how-to-detect-net-application-type/878615#878615 Comment by open-collar on How to detect .Net application type? open-collar 2009-05-18T16:43:48Z 2009-05-18T16:43:48Z This is where I am at the moment - but I am trying to remove the need for the consumer to initialise in this way. If no-one can come up with a better idea then I might well have to stick with this. http://stackoverflow.com/questions/878598/how-to-detect-net-application-type/878609#878609 Comment by open-collar on How to detect .Net application type? open-collar 2009-05-18T16:41:25Z 2009-05-18T16:41:25Z Its a support library providing infrastructure for other libraries and applications that can be used in a variety of contexts. The idea is that this library provides a common means of handling unhandled errors and reporting them to the host application. http://stackoverflow.com/questions/768506/what-are-finalisers-for Comment by open-collar on What are finalisers for? open-collar 2009-04-20T15:01:21Z 2009-04-20T15:01:21Z I have been trying to train myself - I use it in documentation and public facing code, but I just can't bring myself to do it in &quot;real life&quot;. http://stackoverflow.com/questions/314268/how-best-to-communicate-between-appdomains Comment by open-collar on How best to communicate between AppDomains? open-collar 2008-11-24T15:34:24Z 2008-11-24T15:34:24Z WCF using named pipes looks like the favourite to me - I can then at least avoid the necessity of going onto the network. Thanks everyone!