User Darksider - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T10:12:16Z http://stackoverflow.com/feeds/user/15475 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/610345/interactive-batch-file/610364#610364 3 Answer by Darksider for Interactive Batch File Darksider 2009-03-04T12:41:27Z 2009-03-04T13:03:10Z <p>You can use the SET command. The following is the DOS command equivalent of the pseudo code you have above:</p> <pre><code>set /p choice=Do you want to continue? [y/n] if '%choice%'=='Y' goto label1 goto label2 </code></pre> http://stackoverflow.com/questions/351837/any-frameworks-on-authentication-authorization-for-windows-form-application/351887#351887 0 Answer by Darksider for Any frameworks on Authentication & Authorization for Windows Form Application? Darksider 2008-12-09T05:36:20Z 2008-12-09T05:36:20Z <p>If you're not too keen on reinventing the wheel, have a look at a product called <a href="http://www.visual-guard.com/" rel="nofollow">Visual Guard</a>. It allows you to easily add security to your application with minimal work, and has a really fully featured set of tools.</p> http://stackoverflow.com/questions/177373/how-do-i-sort-a-generic-list/177390#177390 9 Answer by Darksider for How do I sort a generic list? Darksider 2008-10-07T06:31:06Z 2008-12-04T05:11:47Z <p>You can use List.Sort() as follows:</p> <pre><code>ApprovalEvents.Sort((lhs, rhs) =&gt; (lhs.EventDate.CompareTo(rhs.EventDate))); </code></pre> http://stackoverflow.com/questions/244335/a-possible-threading-com-ui-problem/244660#244660 1 Answer by Darksider for A Possible Threading/COM/UI problem Darksider 2008-10-28T20:08:19Z 2008-10-28T20:08:19Z <p>I can't really reproduce the issue (creating a test project for an IE toolbar is a tad too much work), but you can try this:</p> <p>Add the following routine to a public static (extensions methods) class:</p> <pre><code>public static void Invoke(this Control control, MethodInvoker methodInvoker) { if (control.InvokeRequired) control.Invoke(methodInvoker); else methodInvoker(); } </code></pre> <p>And then replace the section of similar code in the first block with this:</p> <pre><code>if (element.className != null) { this.Invoke(() =&gt; toolStripLabel1.Text = element.className); } </code></pre> <p>This is a sure-fire way of avoiding thread-safe issues in UI applications.</p> http://stackoverflow.com/questions/228795/double-in-net/228805#228805 3 Answer by Darksider for double in .net Darksider 2008-10-23T07:10:56Z 2008-10-23T07:10:56Z <p>Double is a 64-bit floating point data type. It stores decimals as approximate values. If you need exact values, use the Decimal data type which is a <a href="http://en.wikipedia.org/wiki/Binary-coded_decimal" rel="nofollow">Binary Coded Decimal</a> data type.</p> http://stackoverflow.com/questions/228623/summing-up-all-nodes/228645#228645 1 Answer by Darksider for Summing up all nodes Darksider 2008-10-23T05:36:32Z 2008-10-23T05:36:32Z <p>Try this:</p> <pre><code> private long sum(Node&lt;T&gt; thisNode) { if (thisNode == null) return 0; return thisNode.Size + sum(thisNode.Left) + sum(thisNode.Right); } </code></pre> <p>The only "value" that the original code ever returns is 0 - that's why the result is always 0.</p> http://stackoverflow.com/questions/224618/is-msmq-thread-safe/224651#224651 7 Answer by Darksider for Is MSMQ thread safe? Darksider 2008-10-22T06:22:30Z 2008-10-22T06:22:30Z <p>According to <a href="http://msdn.microsoft.com/en-us/library/system.messaging.messagequeue.aspx" rel="nofollow">MSDN</a>:</p> <blockquote> <p>Only the following methods are thread safe: BeginPeek, BeginReceive, EndPeek(IAsyncResult), EndReceive(IAsyncResult), GetAllMessages, Peek, and Receive.</p> </blockquote> http://stackoverflow.com/questions/191160/how-do-i-extract-the-version-and-path-from-an-svn-working-copy-into-a-nant-variab/191199#191199 3 Answer by Darksider for How do I extract the version and path from an SVN working copy into a nant variable? Darksider 2008-10-10T13:14:37Z 2008-10-10T13:14:37Z <p>Firstly, you can use "svn info --xml >out.xml" to get the svn information to a text file. You can then use a Nant xml-peek to get a value out of the file into a variable.</p> <pre><code>&lt;xmlpeek file="out.xml" xpath="/info/entry/url" property="svn.url" /&gt; </code></pre> http://stackoverflow.com/questions/181829/visualbasic-month-function-inconsistency/181844#181844 5 Answer by Darksider for VisualBasic Month function inconsistency Darksider 2008-10-08T08:36:39Z 2008-10-08T08:36:39Z <p>This normally has to do with the regional settings, and more specifically the date/time formats. If you set these formats so that they are all the same on the machines you're testing on, the results should be consistent. </p> <p>Your idea of using ParseExact is definitely the better solution to go with, IMHO.</p> http://stackoverflow.com/questions/181363/convert-sql-server-database-from-2005-to-2000/181381#181381 5 Answer by Darksider for Convert SQL Server Database from 2005 to 2000 Darksider 2008-10-08T04:44:44Z 2008-10-08T04:44:44Z <p>Generate a full script for your database in SQL2005, and change the "Script for Server Version" option to SQL Server 2000. You can now recreate your database on the SQL 2000 server. After this is complete, use the export data feature to export from SQL 2005 to SQL 2000.</p> http://stackoverflow.com/questions/177323/how-to-read-the-last-row-with-sql-server/177328#177328 17 Answer by Darksider for how to read the last row with SQL Server Darksider 2008-10-07T05:37:56Z 2008-10-07T05:37:56Z <p>If you're using MS SQL, you can try:</p> <pre><code>SELECT TOP 1 * FROM table_Name ORDER BY unique_column DESC </code></pre> http://stackoverflow.com/questions/166729/which-parallel-programming-apis-do-you-use/166749#166749 4 Answer by Darksider for Which parallel programming APIs do you use? Darksider 2008-10-03T13:08:18Z 2008-10-03T13:08:18Z <p>We've started looking at <a href="http://msdn.microsoft.com/en-us/concurrency/default.aspx" rel="nofollow">parallel extensions</a> from Microsoft - its not in release yet, but is certainly showing potential.</p> http://stackoverflow.com/questions/161257/what-language-methods-to-use-to-listen-to-removeable-drives-in-windows/161277#161277 0 Answer by Darksider for What language/methods to use to listen to removeable drives in Windows? Darksider 2008-10-02T08:01:32Z 2008-10-02T08:01:32Z <p>This <a href="http://www.codeproject.com/KB/shell/shchangenotifyregister.aspx" rel="nofollow">article on codeproject.com</a> is in C++, and has a solution using the shell change notify register function.</p> http://stackoverflow.com/questions/160948/how-can-i-tell-if-sp1-has-been-installed-on-vs2008/160953#160953 9 Answer by Darksider for How can I tell if SP1 has been installed on VS2008? Darksider 2008-10-02T05:05:54Z 2008-10-02T05:05:54Z <p>In Help->About, you can view the installed products. You should see something similar to</p> <blockquote> <p>Microsoft Visual Studio Team System 2008 Team Suite - ENU Service Pack 1 (KB945140) KB945140</p> </blockquote> <p>in the list of entries.</p> http://stackoverflow.com/questions/156885/can-i-configure-hibernate-properties-to-connect-without-using-an-instance-name-to/156900#156900 0 Answer by Darksider for can I configure hibernate properties to connect without using an instance name to sql server 2005? Darksider 2008-10-01T09:49:45Z 2008-10-01T09:49:45Z <p>Yes, you can. You set it up as you normally would in the connection string:</p> <blockquote> <p>Server=(local);initial catalog=MyDataBase;Integrated Security=SSPI</p> </blockquote> http://stackoverflow.com/questions/152337/getprocessesbyname-and-windows-server-2003-scheduled-task/152390#152390 -1 Answer by Darksider for GetProcessesByName() and Windows Server 2003 scheduled task Darksider 2008-09-30T09:36:50Z 2008-09-30T09:36:50Z <p>Taken from <a href="http://msdn.microsoft.com/en-us/library/z3w4xdc9.aspx" rel="nofollow">MSDN</a>:</p> <blockquote> <p><strong>Permissions</strong> LinkDemand - for full trust for the immediate caller. This member cannot be used by partially trusted code.</p> </blockquote> http://stackoverflow.com/questions/152074/sql-schema-to-hold-history-of-employee-actions-when-employees-come-go-get-promote/152081#152081 0 Answer by Darksider for SQL schema to hold history of employee actions when employees come/go/get promoted, etc Darksider 2008-09-30T07:29:32Z 2008-09-30T07:29:32Z <p>Have you considered introducing a transition (many-to-many) table linking the employee_type and the employee, and then linking the employee action to this transition table? The transition table could have an additional column for timestamping, that way allowing you to keep track of things chronologically.</p> http://stackoverflow.com/questions/152024/how-to-select-all-users-who-made-more-than-10-submissions/152044#152044 1 Answer by Darksider for How to select all users who made more than 10 submissions. Darksider 2008-09-30T07:09:05Z 2008-09-30T07:16:55Z <pre><code>SELECT username FROM usertable JOIN submissions ON usertable.userid = submissions.userid GROUP BY usertable.username HAVING Count(*) &gt; 1 </code></pre> <p>*Assuming that your "Users" table is call usertable and that it has a column called "UserName"</p> http://stackoverflow.com/questions/151783/which-cpu-architectures-support-compare-and-swap-cas/151798#151798 2 Answer by Darksider for Which CPU architectures support Compare And Swap (CAS)? Darksider 2008-09-30T04:49:46Z 2008-09-30T04:49:46Z <p>The x86 and Itanium have CMPXCHG (compare and exchange)</p> http://stackoverflow.com/questions/151736/parameterized-singleton-patterns/151754#151754 1 Answer by Darksider for Parameterized singleton patterns Darksider 2008-09-30T04:26:53Z 2008-09-30T04:26:53Z <p>Based on your question, it seems you may be looking at an Abstract Factory pattern (creates an instance of several families of classes) that keeps an internal list/dictionary of classes that have already been instantiated, thus mimicking the singleton pattern functionality.</p> <p>You would then use this factory class to request an object based on parameters you've passed in, and if it exists in its internal list it gets returned, and if not, a new instance is created and then added to the list and returned.</p> http://stackoverflow.com/questions/151721/code-promotion-build-or-binary/151741#151741 1 Answer by Darksider for Code Promotion: Build or Binary? Darksider 2008-09-30T04:19:59Z 2008-09-30T04:19:59Z <p>We make use of CI at the dev stage, and use daily builds that are promoted. These daily builds, if successful, are tagged in SVN so that we don't need to keep a seperate copy of the binaries. Any third party libraries referenced are also included so that a tag is an exact source copy of what is compiled.</p> http://stackoverflow.com/questions/139053/securing-an-assembly-so-that-it-cant-be-used-by-a-third-party/139094#139094 2 Answer by Darksider for Securing an assembly so that it can't be used by a third party. Darksider 2008-09-26T12:26:31Z 2008-09-26T12:26:31Z <p>I would suggest that you use the LicenseProvider attribute for securing use to your assembly. More information on the exact usage is available <a href="http://msdn.microsoft.com/en-us/library/system.componentmodel.licenseproviderattribute.aspx" rel="nofollow">here on MSDN</a></p> http://stackoverflow.com/questions/138771/how-do-i-smoothly-format-httphandler-uri/138829#138829 0 Answer by Darksider for How do I "smoothly" format HttpHandler URI? Darksider 2008-09-26T11:17:15Z 2008-09-26T11:17:15Z <p>You could implement URL rewriting, using something like <a href="http://www.urlrewriter.net/" rel="nofollow">URLRewriter.net</a> That would let you use the syntax you've mentioned.</p> http://stackoverflow.com/questions/138133/is-there-a-standard-framework-for-net-parameter-validation-that-uses-attributes/138156#138156 5 Answer by Darksider for Is there a standard framework for .NET parameter validation that uses attributes? Darksider 2008-09-26T07:33:11Z 2008-09-26T07:33:11Z <p>The Microsoft Enterprise Library has the Microsoft.Practices.EnterpriseLibrary.Validation library/namespace which allows validation using attributes.</p> http://stackoverflow.com/questions/138028/is-it-possible-to-call-a-com-api-from-java/138057#138057 2 Answer by Darksider for Is it possible to call a COM API from Java? Darksider 2008-09-26T06:44:25Z 2008-09-26T06:44:25Z <p>I've also found this to be useful: <a href="https://com4j.dev.java.net/" rel="nofollow">com4java</a></p> http://stackoverflow.com/questions/100081/whats-a-good-threadsafe-singleton-generic-template-pattern-in-c/100093#100093 9 Answer by Darksider for What's a good threadsafe singleton generic template pattern in C# Darksider 2008-09-19T06:45:48Z 2008-09-19T07:23:33Z <p>Courtesy of Judith Bishop, <a href="http://patterns.cs.up.ac.za/" rel="nofollow">http://patterns.cs.up.ac.za/</a></p> <p>This singleton pattern implementation ensures lazy initialisation.</p> <pre><code>// Singleton PatternJudith Bishop Nov 2007 // Generic version public class Singleton&lt;T&gt; where T : class, new() { Singleton() { } class SingletonCreator { static SingletonCreator() { } // Private object instantiated with private constructor internal static readonly T instance = new T(); } public static T UniqueInstance { get { return SingletonCreator.instance; } } } </code></pre> http://stackoverflow.com/questions/82169/build-setup-project-with-nant/82240#82240 0 Answer by Darksider for Build setup project with NAnt Darksider 2008-09-17T11:40:37Z 2008-09-17T11:40:37Z <p>Instead of trying to build using MSBUILD (assumption), build the solution or project using DEVENV.EXE. The command line is something along the lines of:</p> <p>DEVENV MySolutionFile.sln /build DEBUG /project SetupProject.vdproj</p> <p>You can change the DEBUG to RELEASE or any other build configuration you've set up. You can also leave out the /project... part to build the whole solution.</p> http://stackoverflow.com/questions/81589/how-to-clear-connections-in-sql-server-2005/81601#81601 5 Answer by Darksider for How to clear connections in Sql Server 2005 Darksider 2008-09-17T09:56:31Z 2008-09-17T09:56:31Z <p>Shameless Plug: <a href="http://www.darkside.co.za/archive/2008/08/08/killing-all-processes-on-a-database.aspx" rel="nofollow">How to kill all processes</a></p> http://stackoverflow.com/questions/100081/whats-a-good-threadsafe-singleton-generic-template-pattern-in-c/100093#100093 Comment by Darksider on What's a good threadsafe singleton generic template pattern in C# Darksider 2009-06-19T09:36:51Z 2009-06-19T09:36:51Z Just a quick question Sam: How did you manage to create a new instance of the class? According to the code above, the constructor is private... http://stackoverflow.com/questions/610345/interactive-batch-file/610364#610364 Comment by Darksider on Interactive Batch File Darksider 2009-03-04T13:03:04Z 2009-03-04T13:03:04Z my apologies - i'll edit it now http://stackoverflow.com/questions/190961/windows-authentication-problems-using-asp-net Comment by Darksider on Windows authentication problems using asp.net Darksider 2008-10-10T12:08:06Z 2008-10-10T12:08:06Z Is the user that is being impersonated a local machine user (created on both machines) or a domain user? http://stackoverflow.com/questions/182181/sqlparameter-conversion Comment by Darksider on sqlParameter conversion Darksider 2008-10-08T11:18:33Z 2008-10-08T11:18:33Z Can you post some more code on how this is called? http://stackoverflow.com/questions/177331/how-to-show-sql-server-2000-server-roles-through-an-sql-query Comment by Darksider on How to show SQL server 2000 server roles through an SQL query Darksider 2008-10-07T06:10:34Z 2008-10-07T06:10:34Z Are you trying to determine if a user has the roles &quot;db_writer&quot;, etc, assigned to it? http://stackoverflow.com/questions/161251/compiled-strongly-typed-alternative-to-net Comment by Darksider on Compiled, strongly-typed alternative to .NET? Darksider 2008-10-02T07:54:21Z 2008-10-02T07:54:21Z Maybe www.mono-project.com ? http://stackoverflow.com/questions/156584/build-deployment-using-cruisecontrol-net Comment by Darksider on Build deployment using CruiseControl.net Darksider 2008-10-01T07:54:46Z 2008-10-01T07:54:46Z What source control system are you using? Does it dupport revision numbers? http://stackoverflow.com/questions/156256/wpf-calling-textbox-clear-from-lostfocus-handler-causes-nullreferenceexception/156277#156277 Comment by Darksider on WPF: Calling TextBox.Clear() from LostFocus handler causes NullReferenceException when window closes Darksider 2008-10-01T04:55:15Z 2008-10-01T04:55:15Z Likewise, I can't reproduce the error. I've added an additional debug statement to the window close event, and it definitely fires after the text box lost focus, so I doubt that's causing the problem. http://stackoverflow.com/questions/152250/get-class-property-name Comment by Darksider on Get class property name Darksider 2008-09-30T08:39:00Z 2008-09-30T08:39:00Z Just to make sure: You want to get the property by name, but the name may have changed? This sounds like something not really solve-able...