User Dave Cluderay - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T18:44:55Zhttp://stackoverflow.com/feeds/user/30933http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1712080/doesnt-get-into-debug-mode/1712253#17122530Answer by Dave Cluderay for Doesn't get into Debug ModeDave Cluderay2009-11-11T00:37:43Z2009-11-11T00:37:43Z<p>Looks like your application has a code file named <em>Token.vb</em> that is trying (unsuccessfully) to access data stored in session state. The session state is not made available to all requests - it depends on the type of file being served (pages <strong>do</strong> get session state, static files such as images <strong>do not</strong>). If the code in <em>Token.vb</em> is being executed during a request for a static file, for example, I'd expect to see the error you described.</p>
http://stackoverflow.com/questions/1603834/dllimport-a-c-dll-in-to-a-c-app-byte-p/1604031#16040312Answer by Dave Cluderay for DllImport a c++ DLL in to a C# app, BYTE * pDave Cluderay2009-10-21T22:32:12Z2009-10-21T22:32:12Z<p>I pasted your code directly into VS2008 and it runs perfectly on my 32-bit machine (added a .def file to set the exported name).
Is your C++ library definitely a pure win32 project? The error message you gave seems to imply that it threw a CLR exception.</p>
http://stackoverflow.com/questions/1602493/how-to-detemine-content-type-of-binary-data-in-the-image-field-of-sql-server-2008/1602568#16025686Answer by Dave Cluderay for How to detemine content type of binary data in the image field of SQL Server 2008?Dave Cluderay2009-10-21T18:11:13Z2009-10-21T18:11:13Z<p>I think that, if you need that information, it would probably be better to store it in a separate column. Once it's in the DB, your only options really are guessing it from the file name (if you happen to store that) or by detecting the signature from the first few bytes of data.</p>
http://stackoverflow.com/questions/1602448/how-does-returning-a-struct-as-an-interface-work/1602513#16025134Answer by Dave Cluderay for How does Returning a Struct as an Interface work?Dave Cluderay2009-10-21T18:02:54Z2009-10-21T18:02:54Z<p>It will be boxed on the <code>return t;</code> statement. At this point, the value is copied from the stack to the heap.</p>
http://stackoverflow.com/questions/1229054/pre-deployment-in-database-project/1229466#12294661Answer by Dave Cluderay for Pre-Deployment in Database projectDave Cluderay2009-08-04T19:33:16Z2009-08-04T19:33:16Z<p>This might not be exactly what you're after but it might help you to work around your problem. after a quick look, I think the sequencing of the pre- and post- deployment scripts might be too difficult to change.</p>
<p>As I understand it, there are some hooks in the build project that will allow you to execute your own code before the deployment begins.</p>
<ol>
<li>Define a <code>PreDeployEvent</code> property in your .dbproj file.</li>
<li>Define a <code>BeforeDeploy</code> target in your .dbproj file.</li>
</ol>
<p>Either of these should be executed at the right point in time, I think.</p>
<p>If you use the <code>PreDeployEvent</code> property you'll need to specify the single command line to be executed. A crude example:</p>
<pre><code><PropertyGroup>
<PreDeployEvent>sqlcmd.exe -i myscript.sql</PreDeployEvent>
</PropertyGroup>
</code></pre>
<p>If you want more control, use the <code>BeforeDeploy</code> target which will allow you to run one or
more custom msbuild tasks. Here's another crude example:</p>
<pre><code><Target Name="BeforeDeploy">
<Message Text="BeforeDeploy" Importance="high" />
</Target>
</code></pre>
<p>By the way, there are plenty of custom tasks freely available, one example being those at <a href="http://www.msbuildextensionpack.com/" rel="nofollow">www.msbuildextensionpack.com</a>.</p>
http://stackoverflow.com/questions/972399/how-does-the-following-jquery-code-work/972493#9724931Answer by Dave Cluderay for How does the following jQuery code work?Dave Cluderay2009-06-09T21:03:29Z2009-06-09T21:28:11Z<p>The <a href="http://docs.jquery.com/Core" rel="nofollow">jQuery function</a>, <code>$(...)</code> doesn't return the element directly. It returns a jQuery object that represents a list of one or more matching elements*.</p>
<p>If the selector expression matches a single element, you can use the <code>get()</code> function to retrieve it and work with it directly:</p>
<pre><code>$('#sometextboxaspcontrol').get(0).value +=txt;
</code></pre>
<p>If the selector expression matches multiple elements, and you want to append to each element's value independently, you need to iterate over the elements in some way. Again, you could use <code>get()</code> (without an index) to get an array of raw elements. You can, however, use the <code>each()</code> function to specify a function that will execute in the context of each element in the match list.</p>
<p>If this is something you do a lot, you can choose to add your own function to the jQuery object itself (i.e. create a plug-in). Typically this will result in smaller, simpler, more readable scripts with less repeated code. This is what the example does. The <code>appendVal()</code> function is added to the jQuery object (and it also returns the jQuery object (returned by the <code>each()</code> function) to allow you to call other jQuery functions in a "chain", e.g.</p>
<pre><code>$('#sometextboxaspcontrol').appendVal(txt).addClass('myClass');
</code></pre>
http://stackoverflow.com/questions/704066/net-2-0-application-in-64-bit-processor/972213#9722130Answer by Dave Cluderay for .net 2.0 application in 64 bit processor ??Dave Cluderay2009-06-09T20:03:48Z2009-06-09T20:03:48Z<p>This is fixed in .NET 2.0 <a href="http://support.microsoft.com/kb/945757/en-us" rel="nofollow">Service Pack 1</a>.</p>
http://stackoverflow.com/questions/966795/mocking-membership/967001#9670011Answer by Dave Cluderay for Mocking MembershipDave Cluderay2009-06-08T21:00:59Z2009-06-08T21:00:59Z<p>Could you inject a <code>MembershipProvider</code> instance into your profile provider and, if none is injected, fall back on using <code>Membership.Provider</code>?</p>
<pre><code>public MembershipProvider MembershipProvider
{
get { return _membershipProvider ?? Membership.Provider; }
set { _membershipProvider = value; }
}
</code></pre>
<p>Your profile provider would interact with the membership provider through the value returned by this property. In your test you'd inject the fake/mock <code>MembershipProvider</code> instance.</p>
<p>If you instead want to just mock the static methods on Membership, you'll have to use something like <em>TypeMock</em>, I guess.</p>
http://stackoverflow.com/questions/959382/asp-net-mvc-membershipservice-email/960001#9600011Answer by Dave Cluderay for ASP.NET MVC MembershipService EmailDave Cluderay2009-06-06T15:54:27Z2009-06-06T17:12:56Z<p>The Membership services provided by the framework don't support this directly.
Your backup plan sounds OK though. This <a href="http://weblogs.manas.com.ar/smedina/?p=5" rel="nofollow">link</a> may help too.</p>
http://stackoverflow.com/questions/947265/marshalling-a-linked-list/957544#9575440Answer by Dave Cluderay for Marshalling a Linked ListDave Cluderay2009-06-05T19:03:01Z2009-06-05T19:10:41Z<p>I answered on your other question along these lines. Shay's <code>struct</code> definition is part of it, but I've corrected <code>Main</code> also.</p>
<pre><code>[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
private struct LocaleInfo
{
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = BUFFER_SIZE)]
public string countryName;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = BUFFER_SIZE)]
public string localeName;
public IntPtr next;
};
[DllImport("systemLocales.dll")]
private static extern int GetSystemLocales(ref IntPtr ppList);
static void Main()
{
IntPtr pList = IntPtr.Zero;
GetSystemLocales(ref pList);
while (pList != IntPtr.Zero)
{
var info = (LocaleInfo)Marshal.PtrToStructure(pList, typeof(LocaleInfo));
Console.WriteLine("Display Name : {0} ({1}) ", info.countryName, info.localeName);
Marshal.FreeHGlobal(pList);
pList = info.next;
}
}
</code></pre>
<p>You ought to close the other question really - I only noticed by luck that you had posted this one too.</p>
http://stackoverflow.com/questions/952721/problems-launching-a-process-with-process-start-how-do-i-construct-the-argume/952852#9528520Answer by Dave Cluderay for Problems launching a process with Process.Start() - how do I construct the argument list?Dave Cluderay2009-06-04T20:17:42Z2009-06-05T09:19:23Z<p>Here's part of a class I wrote a while back to deal with passing arguments to commandlines in Windows. Any argument that contains whitespace gets quotes around it and any quotes embedded within it get escaped by preceding them with backslashes. There is some extra escaping to be done with backslashes that precede an embedded quote (there is a little bit of information in the documentation for <a href="http://msdn.microsoft.com/en-us/library/bb776391%28VS.85%29.aspx" rel="nofollow">CommandLineToArgvW</a>).</p>
<pre><code>/// <summary>
/// Provides shared helper functionality for working with Windows process command-lines.
/// </summary>
internal static class WindowsCommandLineHelper
{
/// <summary>
/// Performs escaping and quoting of arguments where necessary to
/// build up a command-line suitable for use with the
/// <see cref="Process.Start" /> method.
/// </summary>
/// <param name="arguments">The arguments to be included on the command-line.</param>
/// <returns>The resulting command-line.</returns>
public static string FormatCommandLine(params string[] arguments)
{
arguments = (string[])arguments.Clone();
for (int index = 0; index < arguments.Length; index++)
{
arguments[index] = GetQuotedArgument(arguments[index]);
}
return string.Join(" ", arguments);
}
private static string GetQuotedArgument(string argument)
{
// The method reads the input argument backwards and builds
// the result in reverse-character order.
StringBuilder resultBuilder = new StringBuilder();
// If the text has whitespace, it must be surrounded in quotes.
bool surroundingQuotesRequired = HasWhitespace(argument);
// This flag tracks whether the last character processed was a
// quote or a backslash that belongs to a sequence of backslashes
// that immediately precede a quote.
bool precedingQuote = false;
// If surrounding quotes are required, start with one.
// This means that any slashes at the end must be doubled up,
// so we must also set the precedingQuote flag.
if (surroundingQuotesRequired)
{
resultBuilder.Append('"');
precedingQuote = true;
}
// Read the argument string backwards, escaping any quotes and backslashes
// where necessary (backslashes are OK unless in a sequence preceding a quote).
for (int index = argument.Length - 1; index >= 0; index--)
{
char character = argument[index];
resultBuilder.Append(character);
if (character == '"')
{
precedingQuote = true;
resultBuilder.Append('\\');
}
else if (character == '\\' && precedingQuote)
{
resultBuilder.Append('\\');
}
else
{
precedingQuote = false;
}
}
// If surrounding quotes are required, add one.
if (surroundingQuotesRequired)
{
resultBuilder.Append('"');
}
// Reverse the result and we're done.
return Reverse(resultBuilder.ToString());
}
private static bool HasWhitespace(string argument)
{
// Iterate over the string and return true if it contains any whitespace characters.
foreach (char character in argument)
{
if (char.IsWhiteSpace(character))
{
return true;
}
}
return false;
}
private static string Reverse(string input)
{
// Convert the string to a character array, reverse the order
// and convert it back.
char[] array = input.ToCharArray();
Array.Reverse(array);
return new string(array);
}
}
</code></pre>
<p>You'd call it like this:</p>
<pre><code>string commandLine = WindowsCommandLineHelper.FormatCommandLine(
"-i", finPath, "-ar", "44100", "-ab", "160k", foutPath);
Process.Start(exePath, commandLine);
</code></pre>
<p>There is a little bit of information in the documentation for <a href="http://msdn.microsoft.com/en-us/library/bb776391%28VS.85%29.aspx" rel="nofollow">CommandLineToArgvW</a>.</p>
http://stackoverflow.com/questions/951715/how-can-you-do-a-full-outer-join-in-sqlserver-2005/951738#9517381Answer by Dave Cluderay for How can you do a full outer join in sqlserver 2005? Dave Cluderay2009-06-04T16:45:48Z2009-06-04T16:46:08Z<p>Full outer joins should be <a href="http://msdn.microsoft.com/en-us/library/ms187518%28SQL.90%29.aspx" rel="nofollow">supported</a> by SQL Server 2005 - what makes you think they aren't?</p>
http://stackoverflow.com/questions/950342/good-c-focused-blogs-and-or-podcasts/950514#9505140Answer by Dave Cluderay for Good C# focused blogs and/or podcasts?Dave Cluderay2009-06-04T13:17:45Z2009-06-04T13:17:45Z<p>I'm not aware of anything purely in C#, but if you're interested in seeing code, try these...</p>
<ol>
<li>A code-focussed video podcast, often in C#: <a href="http://www.dnrtv.com/" rel="nofollow">http://www.dnrtv.com/</a>.</li>
<li>Also, <a href="http://www.dimecasts.net/" rel="nofollow">http://www.dimecasts.net/</a>.</li>
</ol>
<p>DNRTV definitely had some nice Bill Wagner episodes you'd be interested in.</p>
http://stackoverflow.com/questions/950197/c-best-way-of-assigning-values-to-strings-in-a-loop/950242#9502421Answer by Dave Cluderay for C# Best way of assigning values to strings in a loopDave Cluderay2009-06-04T12:29:58Z2009-06-04T12:29:58Z<p>I don't usually optimize to this level, because I'd expect the JIT compiler to be able to perform an optimization like that anyway at runtime. That being said, I've never actually compared the two. Of course, if you really do need the maximum performance, it's worth testing it both ways (using a sufficent number of iterations and with a release build).</p>
http://stackoverflow.com/questions/949518/scripting-individual-database-objects/949589#9495892Answer by Dave Cluderay for Scripting individual database objectsDave Cluderay2009-06-04T09:55:27Z2009-06-04T10:02:01Z<p>In SQL Server 2005 SP2, this is supported. If you select the option, it will give you files named after the objects, but also including the type of the object in the file name.</p>
<p><a href="http://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=124774" rel="nofollow">http://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=124774</a></p>
<p><strong><em>EDIT</em></strong></p>
<p>Added link confirming that the change was in SP2.</p>
http://stackoverflow.com/questions/946990/does-a-view-exist-in-asp-net-mvc/947086#94708611Answer by Dave Cluderay for Does a View Exist in Asp.Net MVC?Dave Cluderay2009-06-03T20:37:13Z2009-06-03T20:37:13Z<pre><code> private bool ViewExists(string name)
{
ViewEngineResult result = ViewEngines.Engines.FindView(ControllerContext, name, null);
return (result.View != null);
}
</code></pre>
http://stackoverflow.com/questions/943876/exception-handling-around-the-rollback-of-a-sqltransaction/943915#9439151Answer by Dave Cluderay for Exception handling around the rollback of a SqlTransactionDave Cluderay2009-06-03T09:57:12Z2009-06-03T09:57:12Z<p>I agree with Marc that the problem is likely to be within the stored procedures themselves.
There's a quite interesting article outlining a few issues <a href="http://www.code-magazine.com/articleprint.aspx?quickid=0305111&page=1&printmode=true" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/941856/write-binary-file-in-ruby/941906#9419061Answer by Dave Cluderay for Write binary file in RubyDave Cluderay2009-06-02T21:02:10Z2009-06-02T21:02:10Z<p>There are <code>Marshal.dump</code> and <code>Marshal.load</code> methods you can use.</p>
<p>Here's a link: <a href="http://en.wikipedia.org/wiki/Serialization#Ruby" rel="nofollow">http://en.wikipedia.org/wiki/Serialization#Ruby</a>.</p>
<p>And another that saves the data to a file: <a href="http://rubylearning.com/satishtalim/object%5Fserialization.html" rel="nofollow">http://rubylearning.com/satishtalim/object_serialization.html</a>.</p>
http://stackoverflow.com/questions/941837/rijndael-encryption/941850#9418504Answer by Dave Cluderay for rijndael encryptionDave Cluderay2009-06-02T20:51:04Z2009-06-02T20:51:04Z<p>The key should be random, and so could contain pipe characters incidentally. You should represent it as hexadecimal or base-64 in your pipe-delimited string to avoid unpredictable results.</p>
http://stackoverflow.com/questions/936847/string-replace-does-not-seem-to-replace-brackets-with-empty-string/936864#9368645Answer by Dave Cluderay for String.Replace does not seem to replace brackets with empty string...Dave Cluderay2009-06-01T21:25:30Z2009-06-01T21:25:30Z<p>The Replace function returns the modified string, so you have to assign it back to your <code>str</code> variable.</p>
<pre><code>String str = "{3}";
str = str.Replace("{", String.Empty);
str = str.Replace("}", String.Empty);
Console.WriteLine(str);
</code></pre>
http://stackoverflow.com/questions/936125/jquery-buffer-queue-for-effects-or-to-tell-if-an-effect-is-in-process/936159#9361591Answer by Dave Cluderay for jquery buffer/queue for effects? Or to tell if an effect is in process?Dave Cluderay2009-06-01T18:45:01Z2009-06-01T18:45:01Z<p>I'm not sure if this is what you're after, but have you looked at the <a href="http://docs.jquery.com/Effects/stop#clearQueuegotoEnd" rel="nofollow">stop()</a> method.
You can skip straight to the end of any current animations by calling <code>$('#message_system').stop(true, true)</code> before beginning again.</p>
http://stackoverflow.com/questions/782053/get-hdd-and-not-volume-serial-number-on-vista-ultimate-64-bit/931173#9311732Answer by Dave Cluderay for Get HDD (and NOT Volume) Serial Number on Vista Ultimate 64 bitDave Cluderay2009-05-31T03:17:12Z2009-05-31T16:40:31Z<p>This code makes three attempts at obtaining the serial number:</p>
<ol>
<li>Using <code>IOCTL_STORAGE_QUERY_PROPERTY</code>.</li>
<li>Using <code>SMART_RCV_DRIVE_DATA</code>.</li>
<li>Using <code>IOCTL_SCSI_PASS_THROUGH</code>.</li>
</ol>
<p>This code works for me on 64-bit:</p>
<pre><code>' PhysicalDrive.vb
Option Strict On
Option Explicit On
Imports System.Runtime.InteropServices
Imports System.Text
Imports System.ComponentModel
Imports Microsoft.Win32.SafeHandles
Public Class PhysicalDrive
#Region "Win32 Definitions"
<StructLayout(LayoutKind.Sequential)> _
Private Structure IDEREGS
Public bFeaturesReg As Byte
Public bSectorCountReg As Byte
Public bSectorNumberReg As Byte
Public bCylLowReg As Byte
Public bCylHighReg As Byte
Public bDriveHeadReg As Byte
Public bCommandReg As Byte
Public bReserved As Byte
End Structure
<StructLayout(LayoutKind.Sequential)> _
Private Structure SENDCMDINPARAMS
Public cBufferSize As Int32
Public irDriveRegs As IDEREGS
Public bDriveNumber As Byte
<MarshalAs(UnmanagedType.ByValArray, SizeConst:=3)> _
Public bReserved As Byte()
<MarshalAs(UnmanagedType.ByValArray, SizeConst:=4)> _
Public dwReserved As Int32()
<MarshalAs(UnmanagedType.ByValArray, SizeConst:=1)> _
Public bBuffer As Byte()
End Structure
<StructLayout(LayoutKind.Sequential)> _
Private Structure DRIVERSTATUS
Public bDriverError As Byte
Public bIDEError As Byte
<MarshalAs(UnmanagedType.ByValArray, SizeConst:=2)> _
Public bReserved As Byte()
<MarshalAs(UnmanagedType.ByValArray, SizeConst:=2)> _
Public dwReserved As Int32()
End Structure
<StructLayout(LayoutKind.Sequential)> _
Private Structure SENDCMDOUTPARAMS
Public cBufferSize As Int32
Public DriverStatus As DRIVERSTATUS
<MarshalAs(UnmanagedType.ByValArray, SizeConst:=IDENTIFY_BUFFER_SIZE)> _
Public bBuffer As Byte()
End Structure
<StructLayout(LayoutKind.Sequential)> _
Private Structure GETVERSIONINPARAMS
Public bVersion As Byte
Public bRevision As Byte
Public bReserved As Byte
Public bIDEDeviceMap As Byte
Public fCapabilities As Int32
<MarshalAs(UnmanagedType.ByValArray, SizeConst:=4)> _
Public dwReserved As Int32()
End Structure
<StructLayout(LayoutKind.Sequential)> _
Private Structure STORAGE_PROPERTY_QUERY
Public PropertyId As Int32
Public QueryType As Int32
<MarshalAs(UnmanagedType.ByValArray, SizeConst:=1)> _
Public AdditionalParameters As Byte()
End Structure
<StructLayout(LayoutKind.Sequential)> _
Private Structure STORAGE_DEVICE_DESCRIPTOR
Public Version As Int32
Public Size As Int32
Public DeviceType As Byte
Public DeviceTypeModifier As Byte
Public RemovableMedia As Byte
Public CommandQueueing As Byte
Public VendorIdOffset As Int32
Public ProductIdOffset As Int32
Public ProductRevisionOffset As Int32
Public SerialNumberOffset As Int32
Public BusType As Byte
Public RawPropertiesLength As Int32
<MarshalAs(UnmanagedType.ByValArray, SizeConst:=10240)> _
Public RawDeviceProperties As Byte()
End Structure
<StructLayout(LayoutKind.Sequential)> _
Private Structure SCSI_PASS_THROUGH
Public Length As Int16
Public ScsiStatus As Byte
Public PathId As Byte
Public TargetId As Byte
Public Lun As Byte
Public CdbLength As Byte
Public SenseInfoLength As Byte
Public DataIn As Byte
Public DataTransferLength As Int32
Public TimeOutValue As Int32
Public DataBufferOffset As IntPtr
Public SenseInfoOffset As Int32
<MarshalAs(UnmanagedType.ByValArray, SizeConst:=16)> _
Public Cdb As Byte()
End Structure
<StructLayout(LayoutKind.Sequential)> _
Private Structure SCSI_PASS_THROUGH_WITH_BUFFER
Public Spt As SCSI_PASS_THROUGH
Public Filler As Int32
<MarshalAs(UnmanagedType.ByValArray, SizeConst:=64)> _
Public Buffer As Byte()
End Structure
<DllImport("kernel32.dll", SetLastError:=True)> _
Private Shared Function CreateFile(ByVal lpFileName As String, ByVal dwDesiredAccess As Int32, ByVal dwShareMode As Int32, ByVal lpSecurityAttributes As IntPtr, ByVal dwCreationDisposition As Int32, ByVal dwFlagsAndAttributes As Int32, ByVal hTemplateFile As IntPtr) As SafeFileHandle
End Function
<DllImport("kernel32.dll", SetLastError:=True)> _
Private Shared Function DeviceIoControl(ByVal hDevice As SafeFileHandle, ByVal dwIoControlCode As Int32, <[In]()> ByRef lpInBuffer As SENDCMDINPARAMS, ByVal nInBufferSize As Int32, <[In](), Out()> ByRef lpOutBuffer As SENDCMDOUTPARAMS, ByVal nOutBufferSize As Int32, ByRef lpBytesReturned As Int32, ByVal lpOverlapped As Int32) As Int32
End Function
<DllImport("kernel32.dll", SetLastError:=True)> _
Private Shared Function DeviceIoControl(ByVal hDevice As SafeFileHandle, ByVal dwIoControlCode As Int32, ByVal lpInBuffer As IntPtr, ByVal nInBufferSize As Int32, <[In](), Out()> ByRef lpOutBuffer As GETVERSIONINPARAMS, ByVal nOutBufferSize As Int32, ByRef lpBytesReturned As Int32, ByVal lpOverlapped As Int32) As Int32
End Function
<DllImport("kernel32.dll", SetLastError:=True)> _
Private Shared Function DeviceIoControl(ByVal hDevice As SafeFileHandle, ByVal dwIoControlCode As Int32, <[In]()> ByRef lpInBuffer As STORAGE_PROPERTY_QUERY, ByVal nInBufferSize As Int32, <[In](), Out()> ByRef lpOutBuffer As STORAGE_DEVICE_DESCRIPTOR, ByVal nOutBufferSize As Int32, ByRef lpBytesReturned As Int32, ByVal lpOverlapped As Int32) As Int32
End Function
<DllImport("kernel32.dll", SetLastError:=True)> _
Private Shared Function DeviceIoControl(ByVal hDevice As SafeFileHandle, ByVal dwIoControlCode As Int32, <[In]()> ByRef lpInBuffer As SCSI_PASS_THROUGH_WITH_BUFFER, ByVal nInBufferSize As Int32, <[In](), Out()> ByRef lpOutBuffer As SCSI_PASS_THROUGH_WITH_BUFFER, ByVal nOutBufferSize As Int32, ByRef lpBytesReturned As Int32, ByVal lpOverlapped As Int32) As Int32
End Function
Private Const OPEN_EXISTING As Int32 = 3
Private Const GENERIC_READ As Int32 = &H80000000
Private Const GENERIC_WRITE As Int32 = &H40000000
Private Const FILE_SHARE_READ As Int32 = &H1
Private Const FILE_SHARE_WRITE As Int32 = &H2
Private Const FILE_SHARE_DELETE As Int32 = &H4
Private Const SMART_GET_VERSION As Int32 = &H74080
Private Const SMART_RCV_DRIVE_DATA As Int32 = &H7C088
Private Const ID_CMD As Int32 = &HEC
Private Const IDENTIFY_BUFFER_SIZE As Int32 = 512
Private Const CAP_SMART_CMD As Int32 = &H4
Private Const IOCTL_STORAGE_QUERY_PROPERTY As Int32 = &H2D1400
Private Const IOCTL_SCSI_PASS_THROUGH As Int32 = &H4D004
Private Const SCSI_IOCTL_DATA_IN As Int32 = &H1
Private Const PropertyStandardQuery As Int32 = 0
Private Const StorageDeviceProperty As Int32 = 0
Private Const ERROR_INVALID_FUNCTION As Int32 = &H1
#End Region
Public Shared Function GetSerialNumberUsingStorageQuery(ByVal diskNumber As Integer) As String
Using hDisk As SafeFileHandle = OpenDisk(diskNumber)
Dim iBytesReturned As Int32
Dim spq As New STORAGE_PROPERTY_QUERY()
Dim sdd As New STORAGE_DEVICE_DESCRIPTOR()
spq.PropertyId = StorageDeviceProperty
spq.QueryType = PropertyStandardQuery
If DeviceIoControl(hDisk, IOCTL_STORAGE_QUERY_PROPERTY, spq, Marshal.SizeOf(spq), sdd, Marshal.SizeOf(sdd), iBytesReturned, 0) = 0 Then
Throw CreateWin32Exception(Marshal.GetLastWin32Error(), "DeviceIoControl(IOCTL_STORAGE_QUERY_PROPERTY)")
End If
Dim result As New StringBuilder()
If sdd.SerialNumberOffset > 0 Then
Dim rawDevicePropertiesOffset As Integer = Marshal.SizeOf(sdd) - sdd.RawDeviceProperties.Length
Dim pos As Integer = sdd.SerialNumberOffset - rawDevicePropertiesOffset
While pos < iBytesReturned And sdd.RawDeviceProperties(pos) <> 0
result.Append(Encoding.ASCII.GetString(sdd.RawDeviceProperties, pos, 1))
pos += 1
End While
End If
Return result.ToString().Trim()
End Using
End Function
Public Shared Function GetSerialNumberUsingSmart(ByVal diskNumber As Integer) As String
Using hDisk As SafeFileHandle = OpenDisk(diskNumber)
If IsSmartSupported(hDisk) Then
Dim iBytesReturned As Int32
Dim sci As New SENDCMDINPARAMS
Dim sco As New SENDCMDOUTPARAMS
sci.irDriveRegs.bCommandReg = ID_CMD
sci.bDriveNumber = CByte(diskNumber)
sci.cBufferSize = IDENTIFY_BUFFER_SIZE
If DeviceIoControl(hDisk, SMART_RCV_DRIVE_DATA, sci, Marshal.SizeOf(sci), sco, Marshal.SizeOf(sco), iBytesReturned, 0) = 0 Then
Throw CreateWin32Exception(Marshal.GetLastWin32Error(), "DeviceIoControl(SMART_RCV_DRIVE_DATA)")
End If
Dim result As New StringBuilder()
For index As Integer = 20 To 39 Step 2
result.Append(Encoding.ASCII.GetString(sco.bBuffer, index + 1, 1))
result.Append(Encoding.ASCII.GetString(sco.bBuffer, index, 1))
Next
Return result.ToString().Trim()
Else
Return String.Empty
End If
End Using
End Function
Public Shared Function GetSerialNumberUsingScsiPassThrough(ByVal diskNumber As Integer) As String
Using hDisk As SafeFileHandle = OpenDisk(diskNumber)
Dim iBytesReturned As Int32
Dim spt As New SCSI_PASS_THROUGH_WITH_BUFFER
spt.Spt.Length = CShort(Marshal.SizeOf(spt.Spt))
spt.Spt.CdbLength = 16
spt.Spt.DataIn = SCSI_IOCTL_DATA_IN
spt.Spt.DataTransferLength = 64
spt.Spt.DataBufferOffset = New IntPtr(Marshal.SizeOf(spt) - 64)
spt.Spt.TimeOutValue = 60
Dim cdb(15) As Byte
cdb(0) = &H12 ' INQUIRY
cdb(1) = &H1 ' EVPD bit
cdb(2) = &H80 ' Page code (indicates Serial Number)
cdb(4) = 64 ' Allocation length
spt.Spt.Cdb = cdb
If DeviceIoControl(hDisk, IOCTL_SCSI_PASS_THROUGH, spt, Marshal.SizeOf(spt), spt, Marshal.SizeOf(spt), iBytesReturned, 0) = 0 Then
Dim iErrorCode As Int32 = Marshal.GetLastWin32Error()
If iErrorCode <> ERROR_INVALID_FUNCTION Then
Throw CreateWin32Exception(iErrorCode, "DeviceIoControl(IOCTL_SCSI_PASS_THROUGH)")
End If
End If
Dim result As New StringBuilder()
Dim pos As Integer = IntPtr.Size
While pos < spt.Spt.DataTransferLength And spt.Buffer(pos) <> 0
result.Append(Encoding.ASCII.GetString(spt.Buffer, pos, 1))
pos += 1
End While
Return result.ToString().Trim()
End Using
End Function
Private Shared Function CreateWin32Exception(ByVal errorCode As Int32, ByVal context As String) As Win32Exception
Dim win32Exception As New Win32Exception(errorCode)
win32Exception.Data("Context") = context
Return win32Exception
End Function
Private Shared Function OpenDisk(ByVal diskNumber As Integer) As SafeFileHandle
Dim hDevice As SafeFileHandle = CreateFile(String.Format("\\.\PhysicalDrive{0}", diskNumber), GENERIC_READ Or GENERIC_WRITE, FILE_SHARE_READ Or FILE_SHARE_WRITE Or FILE_SHARE_DELETE, IntPtr.Zero, OPEN_EXISTING, 0, IntPtr.Zero)
If (Not hDevice.IsInvalid) Then
Return hDevice
Else
Throw CreateWin32Exception(Marshal.GetLastWin32Error(), "CreateFile")
End If
End Function
Private Shared Function IsSmartSupported(ByVal hDisk As SafeFileHandle) As Boolean
Dim iBytesReturned As Int32
Dim gvi As New GETVERSIONINPARAMS
If DeviceIoControl(hDisk, SMART_GET_VERSION, IntPtr.Zero, 0, gvi, Marshal.SizeOf(gvi), iBytesReturned, 0) = 0 Then
Return False
End If
Return (gvi.fCapabilities And CAP_SMART_CMD) > 0
End Function
End Class
</code></pre>
<p>And here's the code to call it:</p>
<pre><code>' MainModule.vb
Module MainModule
Sub Main()
Console.WriteLine("{0}-bit runtime.", IntPtr.Size * 8)
For drive As Integer = 0 To 4
Try
Console.WriteLine("Drive {0}, SMART: [{1}]", drive, PhysicalDrive.GetSerialNumberUsingSmart(drive))
Console.WriteLine("Drive {0}, Storage Query: [{1}]", drive, PhysicalDrive.GetSerialNumberUsingStorageQuery(drive))
Console.WriteLine("Drive {0}, SCSI Pass Through: [{1}]", drive, PhysicalDrive.GetSerialNumberUsingScsiPassThrough(drive))
Catch ex As Exception
If ex.Data("Context") IsNot Nothing Then Console.Error.Write("{0} failed: ", ex.Data("Context"))
Console.Error.WriteLine(ex.Message)
End Try
Next
End Sub
End Module
</code></pre>
<p><strong>EDIT</strong> - I've changed the main method to display the results of each attempt for comparison. This will hopefully illustrate how hit and miss these techniques can be.</p>
http://stackoverflow.com/questions/926919/serialization-assembly-is-it-needed-or-not/927246#9272460Answer by Dave Cluderay for Serialization Assembly. Is it needed or not?Dave Cluderay2009-05-29T17:41:38Z2009-05-29T17:41:38Z<p>This is not relevant to your situation, but there's another good reason for pre-generating the serialization assembly - it's necessary when hosting your code in SQL Server (i.e. SQLCLR). SQL Server doesn't allow these assemblies to be generated dynamically, so your serialization code would fail inside SQL Server.</p>
http://stackoverflow.com/questions/927088/question-about-type-comparison-asp-net-and-dbnull/927143#9271431Answer by Dave Cluderay for Question about Type Comparison ASP.NET and DBNullDave Cluderay2009-05-29T17:16:40Z2009-05-29T17:16:40Z<p>Why not just use:</p>
<pre><code>If Row.IsNull("url") Then
//' do something here....
End If
</code></pre>
http://stackoverflow.com/questions/890571/setting-mylabel-text-in-repeaters-headertemplate/890673#8906730Answer by Dave Cluderay for Setting MyLabel.Text in Repeater's HeaderTemplateDave Cluderay2009-05-20T23:02:07Z2009-05-20T23:02:07Z<p>Try the following <em>inside</em> your header template:</p>
<pre><code><asp:Label ID="Month" runat="server" Text='<%# (Month)Convert.ToInt16(MonthList.SelectedValue) %>' />
</code></pre>
http://stackoverflow.com/questions/880054/how-to-get-public-token-in-ms-post-event-macros/880351#8803510Answer by Dave Cluderay for How to get public token in ms post event macrosDave Cluderay2009-05-18T23:56:13Z2009-05-19T08:47:43Z<p>From your question, I think you're looking for something you can quickly add to your post-build event from Visual Studio. If you use <code>XCOPY</code>, you can specify a wildcard in the destination path. That might be sufficient for you:</p>
<pre><code>XCOPY "$(TargetDir)$(TargetName).pdb" "%WINDIR%\Assembly\GAC_MSIL\$(TargetName)\*\"
</code></pre>
<p>Another option is to try to extract the public key token using the <code>SN.exe</code> provided with the framework. This might look something like:</p>
<pre><code>FOR /F "usebackq tokens=5" %%T in (`sn.exe -q -T "$(TargetDir)$(TargetName).dll"`) DO COPY ""$(TargetDir)$(TargetName).pdb" "%WINDIR%\Assembly\GAC_MSIL\$(TargetName)\%%T\"
</code></pre>
<p>In reality, though, doesn't the target directory include the assembly version as well as the public key token?</p>
<p>Finally, you can always download the <a href="http://msbuildextensionpack.codeplex.com/" rel="nofollow">MSBuildExtensions</a> library, which includes an <code>Assembly</code> task (or implement a custom task yourself). In this case, though, you'll need to edit your proj file manually.</p>
<p>Also, check out the this <a href="http://www.elumenotion.com/Blog/Lists/Posts/Post.aspx?ID=23" rel="nofollow">blog entry</a> - it may be of interest to you.</p>
http://stackoverflow.com/questions/874363/what-is-better-static-methods-or-instance-methods/874399#8743993Answer by Dave Cluderay for What is better? Static methods OR Instance methodsDave Cluderay2009-05-17T11:24:55Z2009-05-17T11:30:57Z<p>The usefulness of a static method primarily comes when you need to call the method without ever instantiating the object. For example, maybe the static method is there to actually look up an existing instance and return it (an example being a singleton instance).</p>
<p>As others have stated, you can make any method static if it doesn't access state, and you'll get a tiny performance improvement.</p>
<p>If you actually want to be able to call the method on a specific instance though, and get the benefits of polymorphism (i.e. a derived class can override the behaviour of the method), then you should make the it an instance method.</p>
<p>If your classes implement interfaces, then the methods belonging to those interfaces must also be declared as instance methods.</p>
http://stackoverflow.com/questions/872031/i-cant-understand-this-simple-js-code/872055#8720556Answer by Dave Cluderay for I can't understand this simple JS codeDave Cluderay2009-05-16T09:28:13Z2009-05-16T09:28:13Z<p>First it looks for "webkit" (ignoring case) in the string <code>u</code> in an attempt to determine that the browser is Safari.</p>
<p>If it doesn't find that, it looks for "mozilla" (without "compati") or "opera" in an attempt to determine that the browser is Firefox or Opera. Again, the searches are ignoring case (<code>/i</code>).</p>
<p><strong>EDIT</strong></p>
<p>The <code>/.../i.test()</code> code is a regular expression, these are built into JavaScript.</p>
http://stackoverflow.com/questions/869701/location-of-a-windows-service-not-in-my-project/869751#8697510Answer by Dave Cluderay for Location of a Windows service *not* in my projectDave Cluderay2009-05-15T16:51:06Z2009-05-15T19:44:47Z<p>Another option, without the interop, would be a WMI lookup (or registry - bit hacky!).</p>
<p>Here's a quick example, based on <a href="http://www.developmentnow.com/g/36%5F2005%5F4%5F0%5F0%5F505060/Get-path-for-install-service.htm" rel="nofollow">this code</a>:</p>
<pre><code>private static string GetServiceImagePathWMI(string serviceDisplayName)
{
string query = string.Format("SELECT PathName FROM Win32_Service WHERE DisplayName = '{0}'", serviceDisplayName);
using (ManagementObjectSearcher search = new ManagementObjectSearcher(query))
{
foreach(ManagementObject service in search.Get())
{
return service["PathName"].ToString();
}
}
return string.Empty;
}
</code></pre>
http://stackoverflow.com/questions/866623/how-do-i-test-the-current-drive-letter-in-a-batch-file/866638#8666383Answer by Dave Cluderay for How do I test the current drive letter in a batch file?Dave Cluderay2009-05-15T01:16:55Z2009-05-15T01:22:04Z<p>You can use %~d0 to get the drive letter.
Something like this:</p>
<pre><code>IF "%~d0"=="M:" CALL :mSection
</code></pre>
http://stackoverflow.com/questions/1729242/good-c-code-to-read-for-learning/1729633#1729633Comment by Dave Cluderay on Good C code to read for learningDave Cluderay2009-11-13T14:50:46Z2009-11-13T14:50:46ZDave Thomas suggested the core of the Ruby codebase as a good example of a well structured and consistent C codebase of approximately 15000 lines. Whilst I haven't read it myself, presumably Dave has! In the podcast, he also offers some sensible tips for approaching the process of reading and understanding a large codebase.http://stackoverflow.com/questions/1602441/compilation-error-in-asp-net-code-when-adding-a-literal-control/1602456#1602456Comment by Dave Cluderay on Compilation Error in ASP.NET Code when adding a Literal ControlDave Cluderay2009-10-21T18:06:54Z2009-10-21T18:06:54ZAlso, it looks like that tag is self-closing.http://stackoverflow.com/questions/1597606/how-to-create-db-in-sql-express-using-sql-commandsComment by Dave Cluderay on How to create DB in SQL Express using SQL commands?Dave Cluderay2009-10-20T22:16:38Z2009-10-20T22:16:38ZAlso SQLCMD - a command line tool : [<a href="http://msdn.microsoft.com/en-us/library/ms165702.aspx][http://msdn.microsoft.com/en-us/library/ms165702.aspx]" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>http://stackoverflow.com/questions/1229054/pre-deployment-in-database-project/1229466#1229466Comment by Dave Cluderay on Pre-Deployment in Database projectDave Cluderay2009-08-07T12:50:42Z2009-08-07T12:50:42Z<a href="http://pastie.org/575352" rel="nofollow">pastie.org/575352</a> - the first few lines should be enough.
Check the Output window after a deploy - on my VSTS2008 I get output saying the database exists before and after deploy (indicating that the command runs before the DB is dropped and recreated).http://stackoverflow.com/questions/704066/net-2-0-application-in-64-bit-processor/972213#972213Comment by Dave Cluderay on .net 2.0 application in 64 bit processor ??Dave Cluderay2009-06-09T20:29:18Z2009-06-09T20:29:18ZYes - you'd kind of expect the SP1 release note to show up in search results for the original KB number - but it didn't for me (I had to go to the release note directly and then look it up in the list).http://stackoverflow.com/questions/942055/sql-server-extracting-a-column-into-a-table/942076#942076Comment by Dave Cluderay on SQL Server: Extracting a Column Into a TableDave Cluderay2009-06-02T21:56:58Z2009-06-02T21:56:58ZI think Dave wanted the link the other way around.http://stackoverflow.com/questions/941856/write-binary-file-in-ruby/941906#941906Comment by Dave Cluderay on Write binary file in RubyDave Cluderay2009-06-02T21:39:22Z2009-06-02T21:39:22ZNo worries. Pesto's answer looks very promising.http://stackoverflow.com/questions/941856/write-binary-file-in-ruby/941931#941931Comment by Dave Cluderay on Write binary file in RubyDave Cluderay2009-06-02T21:18:29Z2009-06-02T21:18:29ZYes, I think yours is the better answer for this particular question! +1http://stackoverflow.com/questions/927088/question-about-type-comparison-asp-net-and-dbnull/927098#927098Comment by Dave Cluderay on Question about Type Comparison ASP.NET and DBNullDave Cluderay2009-05-29T17:24:53Z2009-05-29T17:24:53ZI don't think that's quite right - the expression "Row.Item("url").GetType" would still evaluate to a System.Type and the overall expression would just evaluate to False.http://stackoverflow.com/questions/902309/why-does-this-program-display-seemingly-random-characters-c/902319#902319Comment by Dave Cluderay on Why does this program display seemingly random characters? (C++)Dave Cluderay2009-05-23T20:31:16Z2009-05-23T20:31:16ZAs an extra note, you can determine the code page in use by the console with the CHCP command (on my Windows command line, this reports code page 850).
To get the exact extension characters for that code page, you can look for a table specific to that code page (e.g. <a href="http://en.wikipedia.org/wiki/Code_page_850" rel="nofollow">en.wikipedia.org/wiki/Code_page_850</a>). There are Windows APIs to get/set the code page programmatically (GetConsoleOutputCP, SetConsoleOutputCP).http://stackoverflow.com/questions/890571/setting-mylabel-text-in-repeaters-headertemplate/890673#890673Comment by Dave Cluderay on Setting MyLabel.Text in Repeater's HeaderTemplateDave Cluderay2009-05-22T22:23:43Z2009-05-22T22:23:43ZGreat! Thanks for retrying it.http://stackoverflow.com/questions/890571/setting-mylabel-text-in-repeaters-headertemplate/890673#890673Comment by Dave Cluderay on Setting MyLabel.Text in Repeater's HeaderTemplateDave Cluderay2009-05-21T18:05:06Z2009-05-21T18:05:06ZWow! Bit harsh with the downvoting - you probably just needed an <%@ Import Namespace="Xyz" %>.http://stackoverflow.com/questions/168486/whats-your-1-way-to-be-careful-with-a-live-database/168529#168529Comment by Dave Cluderay on What's your #1 way to be careful with a live database?Dave Cluderay2009-05-20T23:22:27Z2009-05-20T23:22:27ZAlso useful in that you can run a bunch of selects within the same transaction to verify the results before committing - if they are unexpected, no harm done - just roll back.http://stackoverflow.com/questions/782053/get-hdd-and-not-volume-serial-number-on-vista-ultimate-64-bitComment by Dave Cluderay on Get HDD (and NOT Volume) Serial Number on Vista Ultimate 64 bitDave Cluderay2009-05-17T13:44:17Z2009-05-17T13:44:17Z(also, did EnumDisk1 output any error information?)http://stackoverflow.com/questions/782053/get-hdd-and-not-volume-serial-number-on-vista-ultimate-64-bitComment by Dave Cluderay on Get HDD (and NOT Volume) Serial Number on Vista Ultimate 64 bitDave Cluderay2009-05-17T13:42:54Z2009-05-17T13:42:54ZHi again. Presumably EnumDisk1 also failed to obtain the serial number on Vista 64?