User Darksider - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T10:12:16Zhttp://stackoverflow.com/feeds/user/15475http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/610345/interactive-batch-file/610364#6103643Answer by Darksider for Interactive Batch FileDarksider2009-03-04T12:41:27Z2009-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#3518870Answer by Darksider for Any frameworks on Authentication & Authorization for Windows Form Application?Darksider2008-12-09T05:36:20Z2008-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#1773909Answer by Darksider for How do I sort a generic list?Darksider2008-10-07T06:31:06Z2008-12-04T05:11:47Z<p>You can use List.Sort() as follows:</p>
<pre><code>ApprovalEvents.Sort((lhs, rhs) => (lhs.EventDate.CompareTo(rhs.EventDate)));
</code></pre>
http://stackoverflow.com/questions/244335/a-possible-threading-com-ui-problem/244660#2446601Answer by Darksider for A Possible Threading/COM/UI problemDarksider2008-10-28T20:08:19Z2008-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(() => 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#2288053Answer by Darksider for double in .netDarksider2008-10-23T07:10:56Z2008-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#2286451Answer by Darksider for Summing up all nodesDarksider2008-10-23T05:36:32Z2008-10-23T05:36:32Z<p>Try this:</p>
<pre><code> private long sum(Node<T> 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#2246517Answer by Darksider for Is MSMQ thread safe?Darksider2008-10-22T06:22:30Z2008-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#1911993Answer by Darksider for How do I extract the version and path from an SVN working copy into a nant variable?Darksider2008-10-10T13:14:37Z2008-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><xmlpeek file="out.xml" xpath="/info/entry/url" property="svn.url" />
</code></pre>
http://stackoverflow.com/questions/181829/visualbasic-month-function-inconsistency/181844#1818445Answer by Darksider for VisualBasic Month function inconsistencyDarksider2008-10-08T08:36:39Z2008-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#1813815Answer by Darksider for Convert SQL Server Database from 2005 to 2000Darksider2008-10-08T04:44:44Z2008-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#17732817Answer by Darksider for how to read the last row with SQL ServerDarksider2008-10-07T05:37:56Z2008-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#1667494Answer by Darksider for Which parallel programming APIs do you use?Darksider2008-10-03T13:08:18Z2008-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#1612770Answer by Darksider for What language/methods to use to listen to removeable drives in Windows?Darksider2008-10-02T08:01:32Z2008-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#1609539Answer by Darksider for How can I tell if SP1 has been installed on VS2008?Darksider2008-10-02T05:05:54Z2008-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#1569000Answer by Darksider for can I configure hibernate properties to connect without using an instance name to sql server 2005?Darksider2008-10-01T09:49:45Z2008-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-1Answer by Darksider for GetProcessesByName() and Windows Server 2003 scheduled taskDarksider2008-09-30T09:36:50Z2008-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#1520810Answer by Darksider for SQL schema to hold history of employee actions when employees come/go/get promoted, etcDarksider2008-09-30T07:29:32Z2008-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#1520441Answer by Darksider for How to select all users who made more than 10 submissions.Darksider2008-09-30T07:09:05Z2008-09-30T07:16:55Z<pre><code>SELECT
username
FROM
usertable
JOIN submissions
ON usertable.userid = submissions.userid
GROUP BY
usertable.username
HAVING
Count(*) > 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#1517982Answer by Darksider for Which CPU architectures support Compare And Swap (CAS)?Darksider2008-09-30T04:49:46Z2008-09-30T04:49:46Z<p>The x86 and Itanium have CMPXCHG (compare and exchange)</p>
http://stackoverflow.com/questions/151736/parameterized-singleton-patterns/151754#1517541Answer by Darksider for Parameterized singleton patternsDarksider2008-09-30T04:26:53Z2008-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#1517411Answer by Darksider for Code Promotion: Build or Binary?Darksider2008-09-30T04:19:59Z2008-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#1390942Answer by Darksider for Securing an assembly so that it can't be used by a third party.Darksider2008-09-26T12:26:31Z2008-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#1388290Answer by Darksider for How do I "smoothly" format HttpHandler URI?Darksider2008-09-26T11:17:15Z2008-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#1381565Answer by Darksider for Is there a standard framework for .NET parameter validation that uses attributes?Darksider2008-09-26T07:33:11Z2008-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#1380572Answer by Darksider for Is it possible to call a COM API from Java?Darksider2008-09-26T06:44:25Z2008-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#1000939Answer by Darksider for What's a good threadsafe singleton generic template pattern in C#Darksider2008-09-19T06:45:48Z2008-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<T> 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#822400Answer by Darksider for Build setup project with NAntDarksider2008-09-17T11:40:37Z2008-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#816015Answer by Darksider for How to clear connections in Sql Server 2005Darksider2008-09-17T09:56:31Z2008-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#100093Comment by Darksider on What's a good threadsafe singleton generic template pattern in C#Darksider2009-06-19T09:36:51Z2009-06-19T09:36:51ZJust 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#610364Comment by Darksider on Interactive Batch FileDarksider2009-03-04T13:03:04Z2009-03-04T13:03:04Zmy apologies - i'll edit it nowhttp://stackoverflow.com/questions/190961/windows-authentication-problems-using-asp-netComment by Darksider on Windows authentication problems using asp.netDarksider2008-10-10T12:08:06Z2008-10-10T12:08:06ZIs the user that is being impersonated a local machine user (created on both machines) or a domain user?
http://stackoverflow.com/questions/182181/sqlparameter-conversionComment by Darksider on sqlParameter conversionDarksider2008-10-08T11:18:33Z2008-10-08T11:18:33ZCan 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-queryComment by Darksider on How to show SQL server 2000 server roles through an SQL queryDarksider2008-10-07T06:10:34Z2008-10-07T06:10:34ZAre you trying to determine if a user has the roles "db_writer", etc, assigned to it?http://stackoverflow.com/questions/161251/compiled-strongly-typed-alternative-to-netComment by Darksider on Compiled, strongly-typed alternative to .NET?Darksider2008-10-02T07:54:21Z2008-10-02T07:54:21ZMaybe www.mono-project.com ?http://stackoverflow.com/questions/156584/build-deployment-using-cruisecontrol-netComment by Darksider on Build deployment using CruiseControl.netDarksider2008-10-01T07:54:46Z2008-10-01T07:54:46ZWhat 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#156277Comment by Darksider on WPF: Calling TextBox.Clear() from LostFocus handler causes NullReferenceException when window closesDarksider2008-10-01T04:55:15Z2008-10-01T04:55:15ZLikewise, 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-nameComment by Darksider on Get class property nameDarksider2008-09-30T08:39:00Z2008-09-30T08:39:00ZJust 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...