User Richard - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T12:14:18Zhttp://stackoverflow.com/feeds/user/67392http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1908918/getgenerictypedefinition-returning-false-when-looking-for-ienumerablet-in-list/1908943#19089432Answer by Richard for GetGenericTypeDefinition returning false when looking for IEnumerable<T> in List<T>Richard2009-12-15T17:09:54Z2009-12-15T17:39:15Z<p>Because</p>
<pre><code>(typeof(List<String>)).GetGenericTypeDefinition()
</code></pre>
<p>is returning</p>
<pre><code>typeof(List<>)
</code></pre>
<p><code>GetGenericTypeDefinition</code> can only return one type, not all the unbound types implemented by the target instance of <code>Type</code>.</p>
<p>To determine if <code>X<T></code> implements <code>IY<T></code> either</p>
<ul>
<li><p>Reify T (i.e. make it a real type), and check with concrete types. I.e. does <code>X<string></code> implement <code>IY<string></code>. This can be done via reflection or with the <code>as</code> operator.</p></li>
<li><p><code>Type.GetInterafces()</code> (or <code>Type.GetInterface(t)</code>).</p></li>
</ul>
<p>The second is going to be easier. Especially as this also gives false:</p>
<pre><code>Type t = typeof(List<string>).GetGenericTypeDefinition();
bool isAssign = typeof(IEnumerable<>).IsAssignableFrom(t);
</code></pre>
http://stackoverflow.com/questions/586819/how-to-detect-when-a-protocol-buffer-message-is-fully-received/587010#5870106Answer by Richard for How to detect when a Protocol Buffer message is fully received?Richard2009-02-25T17:33:21Z2009-12-15T09:57:37Z<p>You need to include the size or end marker in your protocol. Nothing is build into stream based sockets (TCP/IP) other than supporting an indefinite stream of octets arbitrarily broken up into separate packets (and packets can be spilt in transit as well).</p>
<p>A simple approach would be for each "message" to have a fixed size header, include both a protocol version and a payload size and any other fixed data. Then the message content (payload).</p>
<p>Optionally a message footer (fixed size) could be added with a checksum or even a cryptographic signature (depending on your reliability/security requirements).</p>
<p>Knowing the payload size allows you to keep reading a number of bytes that will be enough for the rest of the message (and if a read completes with less, doing another read for the remaining bytes until the whole message has been received).</p>
<p>Having a end message indicator also works, but you need to define how to handle your message containing that same octet sequence...</p>
http://stackoverflow.com/questions/1901963/is-it-possible-to-lose-messages-using-msmq-messagequeue-peek-with-a-timeout/1902279#19022791Answer by Richard for Is it possible to lose messages using MSMQ MessageQueue.Peek with a timeout? Richard2009-12-14T17:25:47Z2009-12-14T17:25:47Z<p>I don't think any messages should be missed based on a quick review, but you are working in a very odd way with lots of scope for race conditions.</p>
<p>Why not just receive the message and pass it to <code>ProcessMessage</code> (if <code>ProcessMessage</code> fails, you are performing a read anyway). If you need to handle multiple receivers, then do the receive in an MSMQ transaction so the message is unavailable to other receivers but not removed from the queue until the transaction is committed.</p>
<p>Also, rather than polling the queue, why not do an asynchronous receive and let the thread pool handle the completion (where you must call <code>EndReceive</code>). This saves tying up a thread, and you don't need to special case service shutdown (close the message queue and then call <code>MessageQueue.ClearConnectionCache();</code>).</p>
<p>Also, aborting the thread is a really bad way to exit, just return from the thread's start function.</p>
http://stackoverflow.com/questions/1893108/string-empty-startswithchar10781-tostring-always-returns-true/1893328#18933281Answer by Richard for string.Empty.StartsWith(((char)10781).ToString()) always returns true?Richard2009-12-12T12:53:57Z2009-12-12T12:53:57Z<p>The underlying reason for this is the default string comparison is locale aware. This means using tables of locale data for comparisons (including equality).</p>
<p>Many (if not most) Unicode characters have no value for many locales, and thus don't exist (or do, but match anything, or nothing).</p>
<p>See entries on character weights on Michael Kaplan's blog "<a href="http://blogs.msdn.com/michkap/" rel="nofollow">Sorting It All Out</a>". <a href="http://blogs.msdn.com/michkap/archive/2007/10/09/5375754.aspx" rel="nofollow">This series</a> of blogs contains a lot of background information (the APIs are native, but -- as I understand -- the mechanisms in .NET are the same).</p>
<p>Quick version: this is a complex area to get expected (normal language) comparisons right is hard, this tends to lead to odd things with code points for glyphs outside your language.</p>
http://stackoverflow.com/questions/1887471/is-there-any-other-tool-better-than-firebug-on-any-other-browsers/1887503#18875031Answer by Richard for Is there any other tool better than Firebug on any other browsers?Richard2009-12-11T11:38:05Z2009-12-12T12:36:45Z<p>IE8's developer tools have, IMHO, easier to use CSS property tracing (i.e. you can work by property, rather than just by rule).</p>
<p>But it is only one aspect, and overall Firebug is what I use most of the time.</p>
http://stackoverflow.com/questions/1887890/net-equivalant-for-inetntoa-and-inetaton/1887992#18879921Answer by Richard for .NET Equivalant for INET_NTOA and INET_ATONRichard2009-12-11T13:13:43Z2009-12-11T13:13:43Z<p>The <a href="http://msdn.microsoft.com/library/system.net.ipaddress" rel="nofollow"><code>IPAddress</code></a> class has static methods:</p>
<pre><code>HostToNetworkOrder
NetworkToHostOrder
</code></pre>
<p>With various overloads.</p>
http://stackoverflow.com/questions/592799/where-can-i-find-a-good-introduction-on-sql-locking-and-transaction-strategies/592870#5928701Answer by Richard for Where can I find a good introduction on SQL locking and transaction strategiesRichard2009-02-26T23:10:43Z2009-12-10T14:07:02Z<p>You need to get deep into the product specific documentation to understand this.</p>
<p>It is product specific, and what works in one data does not work in another. That said, for most cases careful choice of isolation level will be sufficient, it is only when you start to really push things that more use of query hints will be needed.</p>
<p>For SQL Server, "Inside SQL Server 2009" (MSPress) is where I got enough detail to know most of the time I do not need that level of detail (and also working with people with decades of Oracle specialisation).</p>
http://stackoverflow.com/questions/1855150/randomly-choose-an-instance-from-union-in-f/1855161#18551614Answer by Richard for Randomly choose an instance from union in F#Richard2009-12-06T11:46:34Z2009-12-06T11:46:34Z<p>Select a random number, then pattern match that number with different branches returning a different instant?</p>
http://stackoverflow.com/questions/1082532/how-to-tryparse-for-enum-value/1082578#10825781Answer by Richard for How to TryParse for Enum value?Richard2009-07-04T17:03:18Z2009-11-26T14:41:03Z<p>In the end you have to implement this around <code>Enum.GetNames</code>:</p>
<pre><code>public bool TryParseEnum<T>(string str, bool caseSensitive, out T value) where T : struct {
// Can't make this a type constraint...
if (!typeof(T).IsEnum) {
throw new ArgumentException("Type parameter must be an enum");
}
var names = Enum.GetNames(typeof(T));
value = (Enum.GetValues(typeof(T)) as T[])[0]; // For want of a better default
foreach (var name in names) {
if (String.Equals(name, str, caseSensitive ? StringComparison.Ordinal : StringComparison.OrdinalIgnoreCase)) {
value = (T)Enum.Parse(typeof(T), name);
return true;
}
}
return false;
}
</code></pre>
<p>Additional notes:</p>
<ul>
<li><code>Enum.TryParse</code> is included in .NET 4. See here <a href="http://msdn.microsoft.com/library/dd991876%28VS.100%29.aspx" rel="nofollow">http://msdn.microsoft.com/library/dd991876(VS.100).aspx</a></li>
<li>Another approach would be to directly wrap <code>Enum.Parse</code> catching the exception thrown when it fails. This could be faster when a match is found, but will likely to slower if not. Depending on the data you are processing this may or may not be a net improvement.</li>
</ul>
http://stackoverflow.com/questions/1750338/connect-to-a-computer-behind-router-in-net/1750361#17503612Answer by Richard for Connect to a computer behind router in .netRichard2009-11-17T17:15:07Z2009-11-17T17:15:07Z<p>Assuming the router includes NAT and Firewall, you need to configure the router to allow an inbound connection to be directed to the machine.</p>
http://stackoverflow.com/questions/1750054/how-do-i-implement-a-datatable-group-by/1750344#17503440Answer by Richard for How do I implement a datatable "group by"?Richard2009-11-17T17:11:51Z2009-11-17T17:11:51Z<p>Use <a href="http://msdn.microsoft.com/library/bb386977.aspx" rel="nofollow">LINQ to DataSets</a> and the GroupBy extension methods.</p>
<p>Add assembly System.Data.DataSetExtensions.dll to your project to get access to the <a href="http://msdn.microsoft.com/library/system.data.datatableextensions.asenumerable." rel="nofollow"><code>AsEnumerable()</code></a> extension method.</p>
http://stackoverflow.com/questions/1715275/read-text-file-within-a-net-project/1715308#17153081Answer by Richard for Read text file within a .NET projectRichard2009-11-11T13:54:26Z2009-11-11T13:54:26Z<p>Embed as resources in the assembly, then use <code>ResourceManager</code> to read them into a <code>Stream</code> or <code>String</code> at runtime?</p>
http://stackoverflow.com/questions/1715078/url-convention-for-date-range/1715104#17151046Answer by Richard for URL convention for date rangeRichard2009-11-11T13:14:36Z2009-11-11T13:23:32Z<p>Have you considered ISO format dates, especially in their compact form: <code>YYYYMMDD</code>, then it should be possible to have:</p>
<pre><code>http://example.com/dates/20091101/20091131
</code></pre>
<p>Specifically I don't think there is any <em>accepted</em> convention for this.</p>
<p>Edit: this is about routing as well...</p>
http://stackoverflow.com/questions/1662605/read-a-web-config-file-in-a-virtual-directory/1662663#16626630Answer by Richard for Read a web.config file in a virtual directoryRichard2009-11-02T17:43:17Z2009-11-02T17:43:17Z<p>IIS does have programmatic access to its configuration data (which is documented on MSDN and/or Technet). This will be the only supported route (i.e. will continue to work across IIS versions).</p>
<p>Otherwise you can hack a solution (both of these will require higher than usual rights for the process):</p>
<ul>
<li><p>Parse the output from <code>appcmd.exe</code>:</p>
<p>E.g. here:</p>
<pre><code>> C:\Windows\system32\inetsrv\appcmd.exe list vdir
VDIR "Default Web Site/" (physicalPath:E:\Dev\weblocal\XYZ)
VDIR "Default Web Site/DevRoot/TestWebClient" (physicalPath:E:\Dev\Tests\ClientSideWeb)
VDIR "Default Web Site/Home" (physicalPath:E:\Data\Homepages)
</code></pre></li>
<li><p>Read the configuration directly from <code>C:\Windows\System32\inetsrv\config</code>.</p></li>
</ul>
http://stackoverflow.com/questions/1656914/printing-code-with-syntax-highlighting/1657003#16570033Answer by Richard for Printing code with syntax highlighting?Richard2009-11-01T12:03:56Z2009-11-01T12:03:56Z<p>Visual Studio will, and allows you have a completely separate configuration for printing.</p>
http://stackoverflow.com/questions/1655058/sql-and-visual-basic-2008-queries/1655133#16551331Answer by Richard for SQL and VISUAL BASIC 2008 QueriesRichard2009-10-31T18:15:20Z2009-10-31T18:15:20Z<p>MSDN has lots of examples of getting data via ADO.NET. E.g. <a href="http://msdn.microsoft.com/library/dw70f090" rel="nofollow">http://msdn.microsoft.com/library/dw70f090</a>.</p>
<p>You will need to adjust the connection and command types (and the connection string) to be correct for My SQL. If you have ODBC drivers for My SQL then you can follow the ODBC example with just a change of connection string.</p>
http://stackoverflow.com/questions/1650633/is-there-is-a-fluent-approach-to-handling-winform-event/1650795#16507951Answer by Richard for Is there is a fluent approach to handling WinForm event?Richard2009-10-30T16:13:21Z2009-10-30T16:13:21Z<p>.NET 4 will introduce the reactive framework (<code>IObservable<T></code>, <code>IObserver<T></code> and helper extension types) which should offer exactly this.</p>
http://stackoverflow.com/questions/1606454/conditional-orderby-sort-order-in-linq/1606482#16064822Answer by Richard for Conditional "orderby" sort order in LINQRichard2009-10-22T11:04:40Z2009-10-22T11:04:40Z<p>If you build the expression incrementally you can do this. Generally easier using expressions rather than comprehension expressions:</p>
<pre><code>var x = widgets.Where(w => w.Name.Conatins("xyz"));
if (flag) {
x = x.OrderBy(w => w.property);
} else {
x = x.OrderByDescending(w => w.property);
}
</code></pre>
<p>(Assuming the Widget's <code>property</code> is basis of sort since you don't list one.)</p>
http://stackoverflow.com/questions/1606378/is-there-any-reason-vb6-couldnt-be-ported-to-net/1606464#16064640Answer by Richard for Is there any reason VB6 couldn't be ported to .Net?Richard2009-10-22T11:01:36Z2009-10-22T11:01:36Z<p>Visual Basic 4, 5 and 6 were based on COM. COM defines a binary interface between components (ABI) and an object model (including memory management).</p>
<p>.NET also defines these things, but in a fundamentally different way (e.g. GC rather than reference counting).</p>
<p>Since VB6 is predicated on COM's way of doing things, there would be an underlying impedance mismatch with "pure .NET", like you see in C++/CLI where you have to handle .NET and native objects and types a little differently.</p>
<p>Remember you can use VB6 components from .NET and visa versa via COM interop, so a gradual change is possible.</p>
http://stackoverflow.com/questions/1587502/how-to-get-visualstudio-2010-cool-tools-without-spending-12-000/1593802#15938021Answer by Richard for How to get VisualStudio 2010 cool tools without spending $12,000Richard2009-10-20T10:53:14Z2009-10-20T10:53:14Z<p>Get VS 2008 Team Edition (e.g. Developer) with MSDN Premium today, and take advantage of the automatic upgrade to VS2010 Ultimate on its release.</p>
<p>Also, look at volume licensing: It is cheaper for even one VS/MSDN licence, so should save significantly for three.</p>
http://stackoverflow.com/questions/1593500/get-namespace-classname-from-a-dll-in-c-2-0/1593542#15935420Answer by Richard for Get Namespace, classname from a dll in C# 2.0Richard2009-10-20T09:49:12Z2009-10-20T09:49:12Z<p>At runtime namespaces just become part of the type name.</p>
<p>So you need to:</p>
<ol>
<li>Load the assembly</li>
<li>Get the Type instance for the type you want.</li>
<li>Get the <code>MethodInfo</code> for the method you want to call.</li>
<li>Call the method.</li>
</ol>
<p>Of these 2–4 are easy. 1 <em>might</em> be easy or might not, depending where the assembly is. Assuming the assembly can be found via the normal assembly load ("probing"). This will call a public static method of a type that takes no arguments but does have a return value.</p>
<pre><code>var asm = Assembly.Load(assemblyName);
var t = asm.GetType(typeName);
// Pass array of parameter types to resolve between overloads (here no arguments).
var m = t.GetMathod(methodName, BindingFlags.Static, null, new Type[] {}, null);
// Pass no "this" or arguments.
var res = (resultType) m.Invoke(null, null);
</code></pre>
<p>A number of the details here will depend on the details of the assembly, type and method you want to call.</p>
http://stackoverflow.com/questions/1581677/date-of-birth-validation-how-far-much-would-you-go/1581699#15816990Answer by Richard for "Date of birth" validation: How far/much would you go?Richard2009-10-17T07:59:59Z2009-10-17T07:59:59Z<p>It all depends on the application. A line of business (LOB) application for order processing is very different to tracking historical or future data.</p>
<p>One can agree it needs to be a valid date, but consider there are multiple calendars (e.g. month number can be 13, year can be over 5000).</p>
http://stackoverflow.com/questions/1577312/whats-the-catch-select-new-in-linq-vs-simply-filling-the-object/1577382#15773821Answer by Richard for what's the catch (select new in LINQ vs simply filling the object)Richard2009-10-16T10:47:03Z2009-10-16T10:47:03Z<p>In the first code no <code>c</code> will be read from <code>SomeTable</code> or instance of <code>SomeObject</code> will be created until something enumerates <code>temp</code>.</p>
<p>The second this enumeration takes place.</p>
<p>Therefore I would expect there is an issue with the validity of <code>Context.SomeTable</code> when <code>temp</code> is enumerated in the first case.</p>
<p>Test this by changing the first block to:</p>
<pre><code>var temp = (from c in Context.SomeTable
select new SomeObject { name=c.Name, created = c.Created}
).ToList();
</code></pre>
<p>which forces immediate enumeration.</p>
http://stackoverflow.com/questions/1577150/cannot-validate-against-multiple-xsd-schemas-in-c/1577341#15773410Answer by Richard for Cannot validate against multiple xsd schemas in C#Richard2009-10-16T10:36:17Z2009-10-16T10:36:17Z<p>From the error it would seem the XML Signature schema is not being loaded, despite the import.</p>
<p>Adding the XML Signature schema to the schema set explicitly should confirm that.</p>
<p>The most likely cause is the schema set's <code>XmlReslver</code> is not finding the file you specify, this could be a current folder/relative path issue.</p>
<p>Using <a href="http://technet.microsoft.com/sysinternals/bb896645" rel="nofollow">Process Monitor</a> to see where you could is trying to load the XSD file may also help.</p>
http://stackoverflow.com/questions/1559032/fundamental-difference-between-join-lock/1559044#15590443Answer by Richard for Fundamental difference between Join() Lock()Richard2009-10-13T09:04:10Z2009-10-13T09:04:10Z<p><code>Thread.Join()</code> waits for a thread to <em>exit</em>. <code>Monitor.Enter(obj)</code> (how the compiler expresses the entry to a <code>lock</code> statement) waits for no other thread to hold <code>obj</code>'s object lock.</p>
<p>The former is used to help manage thread lifetimes, the latter to control concurrency.</p>
http://stackoverflow.com/questions/1527785/private-assemblies-under-sub-folder-cannot-load-dependencies/1530735#15307351Answer by Richard for Private assemblies under sub-folder cannot load dependenciesRichard2009-10-07T10:23:34Z2009-10-07T16:28:16Z<p>First thing to do is use the Fusion Log Viewer "<code>FUSLOGVW.exe</code>"<sup>1</sup> to enable logging of assembly loading. This will show you where the CLR is trying to load the dependencies from. This should confirm some location is missing—and tell you what you are missing in your <code>.config</code>.</p>
<p>[Edit: Now with log]</p>
<p>Once a matching assembly name has been found, no more (file) search takes place. I.e. keep your assembly names unique.</p>
<p>(This is similar to C++ method overload resolution, first the best match is found and then accessibility is checked, so a weaker parameter match that is accessible will not be considered.)</p>
<p><sup>1</sup> NB. If you are running on a 64bit system, thee are separate 32 and 64bit versions of this tool: ensure you use the right one.</p>
http://stackoverflow.com/questions/1530130/vs2008-no-embedded-application-icon/1530720#15307203Answer by Richard for VS2008, no embedded application icon?Richard2009-10-07T10:19:43Z2009-10-07T10:19:43Z<p>The application icon needs to be a native (Win32) resource in the <code>.exe</code> (or <code>.dll</code>) file. This is extracted by the shell using the native resource APIs.</p>
<p>But the resources that VS embeds in an assembly are managed (.NET) resources.</p>
<p>(I.e. there are multiple ways of embedding a resource in a <code>.exe</code> or <code>.dll</code> and you need to use the right way.)</p>
<p>VS will show you the native resources if you open the assembly file directly. .NET Reflector will show you the managed resources.</p>
http://stackoverflow.com/questions/1520497/visual-studion-2008-appdata-defaults/1520737#15207370Answer by Richard for Visual Studion 2008 App_Data defaultsRichard2009-10-05T15:21:24Z2009-10-06T07:44:39Z<p>You can use a SQL Server 2005 (or 2008) database with a Web Application or Web Site project. You can probably have the database files (<code>.mdf</code>, <code>.ldf</code>) in the <code>App_Data</code> folder (and remember you need to attach the database<sup>1</sup> to SQL Server directly—the auto-connect file only works with Express).</p>
<p>But you do need to ensure the data connections used by the application are set to use connection strings defined in the application's own <code>web.config</code>. By default things like the membership provider default to a SQL Express database in <code>App_Data</code> due to the contents of the global <code>machine.config</code><sup>2</sup> setting the membership provider to use connection
<code>LocalSqlServer</code> which is set in the same file to be:</p>
<pre>
data source=.\SQLEXPRESS;Integrated Security=SSPI;
AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true
</pre>
<p>Where <code>|DataDirectory|</code> will be replaced at runtime by <code>App_Data</code> in the application root.</p>
<p>Summary the application, (web.config, VS's data connections are not used outside the designer) needs to either:</p>
<ul>
<li>Use SQL Express. <code>.mdf</code> in the App_Data folder with a connection string using "<code>AttachDBFilename</code>".</li>
<li>Use SQL Server (full) with the database configured (persistently) in SQL Server with the data files (<code>.mdf</code>, <code>.ldf</code>) in a location that the SQL Server user account can access. All the connection strings reference that database via "<code>Data Source</code>" (to set server name) and "<code>Initial Catalog</code>" to set the database. The account for the IIS application pool needs to be able to access SQL Server.</li>
</ul>
<p><sup>1</sup> Use SQL Management Studio to do this. (And thanks to the other <a href="http://stackoverflow.com/questions/1520497/visual-studion-2008-appdata-defaults/1521987#1521987">answer</a> for reminding me.)</p>
<p><sup>2</sup> See <code>%SystemRoot%\\Microsoft.NET\Framework\v2.0.50727\CONFIG\machine.config</code>. The </p>
http://stackoverflow.com/questions/1496850/select-xmlnode-by-id-using-xpath/1496878#14968782Answer by Richard for Select XMLNode by Id using XPathRichard2009-09-30T08:54:29Z2009-09-30T09:04:41Z<p>You can add a condition that applies to a relative (or absolute node) to any step of an XPath expression.</p>
<p>In this case:</p>
<pre><code>//*[@id=substring-after(/Reference/@URI, '#')]
</code></pre>
<p>The <code>//*</code> matches all elements in the document. The part in <code>[]</code> is a condition. Inside the condition the part of the URI element of the root References node is taken, but ignoring the '#' (and anything before it).</p>
<p>Sample code, assuming you have loaded your XML into <code>XPathDocument</code> <code>doc</code>:</p>
<pre><code>var nav = doc.CreateNavigator();
var found = nav.SelectSingleNode("//*[@id=substring-after(/Reference/@URI, '#')]");
</code></pre>
http://stackoverflow.com/questions/1493771/looking-for-a-powershell-script-to-compare-two-folders-recursively/1493820#14938202Answer by Richard for Looking for a PowerShell script to compare two folders recursivelyRichard2009-09-29T17:06:49Z2009-09-29T17:06:49Z<p>Easy enough to do something simple:</p>
<pre><code>$d1 = get-childitem -path $dir1 -recurse
$d2 = get-childitem -path $dir2 -recurse
compare-object $d1 $d2
</code></pre>
<p>More sophistication required depending on the definition of difference.</p>
http://stackoverflow.com/questions/1914113/what-is-equvalent-code-for-following-c-codeComment by Richard on What is equvalent code for following c# codeRichard2009-12-16T11:41:52Z2009-12-16T11:41:52Z-1: Not a real question: equivalent code in what language?http://stackoverflow.com/questions/1908918/getgenerictypedefinition-returning-false-when-looking-for-ienumerablet-in-list/1908943#1908943Comment by Richard on GetGenericTypeDefinition returning false when looking for IEnumerable<T> in List<T>Richard2009-12-16T11:04:13Z2009-12-16T11:04:13ZYou mean the one where I say just using <code>AssignableFrom</code> "*gives false*"?http://stackoverflow.com/questions/1903356/email-validation-regular-expressionComment by Richard on Email Validation - Regular ExpressionRichard2009-12-16T10:44:42Z2009-12-16T10:44:42ZDuplicate as noted, and regex is not the answer here (valid syntax doesn't make the email valid, e.g. foo@example.com is valid syntax, but does not exist).http://stackoverflow.com/questions/1901963/is-it-possible-to-lose-messages-using-msmq-messagequeue-peek-with-a-timeout/1902279#1902279Comment by Richard on Is it possible to lose messages using MSMQ MessageQueue.Peek with a timeout? Richard2009-12-15T09:54:16Z2009-12-15T09:54:16ZRe: COM in <code>ProcessMessage</code>: should not be a problem if only one thread is running <code>ProcessMessage</code> (which can be achieved in the async case by only starting a new async receive after <code>ProcessMessage</code> has completed.
In the async case you close the queue (and flush the cache --- based on some searching this appears to be needed to really close the connection) and any pending receives will be cancelled. There is no loop to cancel.http://stackoverflow.com/questions/1894583/what-great-people-within-computer-science-should-we-all-know-about/1894751#1894751Comment by Richard on What great people within computer science should we all know about?Richard2009-12-14T17:49:01Z2009-12-14T17:49:01ZStrictly speaking they independently /re-invented/ public key cryptography (it having been invented at GCHQ somewhat earlier, but kept secret).http://stackoverflow.com/questions/1893223/how-to-change-devenv-command-location/1893239#1893239Comment by Richard on How to change "devenv" command location?Richard2009-12-12T12:40:03Z2009-12-12T12:40:03Z+1. Overall probably safer to have your command line (PATH etc.) set to give a consistent environment for a single environment. Not everything is in one folder, there are multiple paths that are needed (otherwise you could find command line builds using different compilers to IDE builds). VS includes batch files (and installs shortcuts to cmd instances using them) that can guide you.http://stackoverflow.com/questions/1887504/which-winapi-function-i-must-use-to-know-if-a-file-is-blocked-by-another-process/1887572#1887572Comment by Richard on Which WINAPI function I must use to know if a file is blocked by another process?Richard2009-12-11T13:25:23Z2009-12-11T13:25:23ZTry to open, and deal with it failing is the only reliable way. Any process of test then open could fail with a race condition where another process opens the file between your process's test and open operations.http://stackoverflow.com/questions/592799/where-can-i-find-a-good-introduction-on-sql-locking-and-transaction-strategies/592870#592870Comment by Richard on Where can I find a good introduction on SQL locking and transaction strategiesRichard2009-12-10T14:06:53Z2009-12-10T14:06:53Z@Brann (and edit by dove): No, the book I used was for SQL Server 2000. I expect there are more up to date editions, but that doesn't change where I first learnt this.http://stackoverflow.com/questions/1750338/connect-to-a-computer-behind-router-in-netComment by Richard on Connect to a computer behind router in .netRichard2009-11-18T11:23:35Z2009-11-18T11:23:35Z@Kyle: For a home network it would be UV, for corporate SF, but question indicated a home network.http://stackoverflow.com/questions/1750338/connect-to-a-computer-behind-router-in-netComment by Richard on Connect to a computer behind router in .netRichard2009-11-17T17:14:21Z2009-11-17T17:14:21ZBelongs on User-Voice: Use of .NET makes no difference, you need a method to allow an inbound socket to connect.http://stackoverflow.com/questions/1728404/date-format-yyyy-mm-ddthhmmssz/1728432#1728432Comment by Richard on date format yyyy-MM-ddTHH:mm:ssZRichard2009-11-13T12:05:18Z2009-11-13T12:05:18ZThis format is the canonical format for XSD date/time values.http://stackoverflow.com/questions/1668416/32-bit-cluster-exe-on-64-bit-windows-2008Comment by Richard on 32-bit cluster.exe on 64 bit Windows 2008Richard2009-11-03T16:31:05Z2009-11-03T16:31:05ZBelongs on Server Fault.http://stackoverflow.com/questions/1662600/why-does-visual-studio-2008-tell-me-9-8999999999999995-0-000000000000000555/1662642#1662642Comment by Richard on Why does Visual Studio 2008 tell me .9 - .8999999999999995 = 0.00000000000000055511151231257827?Richard2009-11-02T17:46:04Z2009-11-02T17:46:04Z+1: It is a shame that SO cannot auto-answer with this for each and every floating point question, being the right answer for at least 90% of floating point questions.http://stackoverflow.com/questions/1650253/stacktrace-filename-unknownComment by Richard on StackTrace filename unknownRichard2009-10-30T16:40:05Z2009-10-30T16:40:05ZCan you show the complete trace? Need more context to help.http://stackoverflow.com/questions/1606378/is-there-any-reason-vb6-couldnt-be-ported-to-net/1606464#1606464Comment by Richard on Is there any reason VB6 couldn't be ported to .Net?Richard2009-10-27T20:05:13Z2009-10-27T20:05:13Z@<arkJ: The answer is to use .NET/COM interop to incrementally port code as it needs to change. Thus getting the benefit, without compromising .NET.