User Roger Lipscombe - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T21:17:27Zhttp://stackoverflow.com/feeds/user/8446http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1816691/how-do-i-resolve-a-canonical-filename-in-windows/1816754#18167541Answer by Roger Lipscombe for How do I resolve a canonical filename in Windows?Roger Lipscombe2009-11-29T20:59:27Z2009-11-29T20:59:27Z<p>Short answer: not really.</p>
<p>There is no simple way to get the canonical name of a file on Windows. Local files can be available via reparse points, via SUBST. Do you want to deal with NTFS junctions? Windows shortcuts? What about <code>\\?\</code>-escaped filenames</p>
<p>Remote files can be available via mapped drive letter or via UNC. Is that the UNC to the origin server? Are you using DFS? Is the server using reparse points, etc.? Is the server available by more than one name? What about the IP address? Does it have more than one IP address?</p>
<p>So, if you're looking for something like the inode number on Windows, it ain't there. See, for example, <a href="http://pdh11.blogspot.com/2009/05/pathcanonicalize-versus-what-it-says-on.html" rel="nofollow">this page</a>.</p>
http://stackoverflow.com/questions/1762875/automating-clickonce-deployment-with-security-certificates-etc-such-that-cli/1796303#17963031Answer by Roger Lipscombe for Automating Clickonce deployment with security ( certificates etc. ) such that client installs the application without any prompt. Roger Lipscombe2009-11-25T11:20:55Z2009-11-25T11:20:55Z<p>CERTMGR is an MMC snapin, not an EXE. Run it as <code>CERTMGR.MSC</code>.</p>
<p>Alternatively, you can use <code>CERTUTIL.EXE</code> from the command line, which is available in <code>C:\Windows\System32</code> on recent versions of Windows.</p>
http://stackoverflow.com/questions/1776006/visual-studio-postbuild-changing-to-the-solution-drive/1776019#17760192Answer by Roger Lipscombe for Visual studio postbuild - changing to the solution driveRoger Lipscombe2009-11-21T16:54:51Z2009-11-21T16:54:51Z<pre><code>CD /D $(ProjectDir)
</code></pre>
http://stackoverflow.com/questions/1775302/wake-up-a-service-communication-with-services/1775371#17753713Answer by Roger Lipscombe for wake up a service, communication with services.Roger Lipscombe2009-11-21T12:33:28Z2009-11-21T12:33:28Z<p>You need to use interprocess communication (IPC). For C#, this usually means either .NET remoting -- on older versions of .NET -- or Windows Communication Foundation (WCF) -- on newer versions of .NET.</p>
<p>Essentially, the client application connects to an interface implemented by the service, and can then call methods on it, as if it was in the same process.</p>
<p>If this is too complicated, you could use a named event object, which the service waits on, and the client sets.</p>
http://stackoverflow.com/questions/1775347/open-file-dialog-not-working-in-vista-and-2008-environment/1775360#17753602Answer by Roger Lipscombe for open file dialog not working in vista and 2008 environmentRoger Lipscombe2009-11-21T12:29:38Z2009-11-21T12:29:38Z<p>Is the custom action running with elevation? This is a problem with UAC: elevated tokens cannot see mapped drives or network locations associated with the original, non-elevated, account.</p>
http://stackoverflow.com/questions/1764898/how-do-i-safely-stop-a-c-net-thread-running-in-a-windows-service/1764924#17649249Answer by Roger Lipscombe for How do I safely stop a C# .NET thread running in a Windows service?Roger Lipscombe2009-11-19T17:07:56Z2009-11-19T17:07:56Z<p>When I have something like this, I usually use a <code>ManualResetEvent</code>. This is set in the <code>Stop()</code> call. Then I wait with a timeout:</p>
<pre><code>for (;;)
{
if (_stop.WaitOne(timeout))
break;
DoSomething();
}
</code></pre>
http://stackoverflow.com/questions/1749546/increasing-timeout-for-linq-to-sql-stored-procedure-call0Increasing timeout for LINQ to SQL stored procedure callRoger Lipscombe2009-11-17T15:13:54Z2009-11-17T15:35:54Z
<p>I call a stored procedure via Linq-to-SQL. This stored procedure simply processes data that I've already inserted into another table. On large data sets, I get a timeout exception:</p>
<pre><code>"Timeout expired. The timeout period elapsed prior to completion of the operation
or the server is not responding."
</code></pre>
<p>I can't do anything to speed the stored procedure up -- it's just moving data from one table to another. I don't particularly want to increase the timeout in the database connection string -- this is the only thing that takes a long time.</p>
<p>This isn't a web app; the stored procedure is called from a background thread in a normal Windows service. The background thread is kicked off by a WCF call, and the client periodically polls for the result of the background thread.</p>
<p>Unfortunately, the stored procedure takes too long, and the <code>GetDataContext().spRunStoredProcedure()</code> call throws a <code>TimeoutException</code>, even though the stored procedure appears to be running fine.</p>
<p>Can I increase the timeout just for this stored procedure call? Or is there a way to get the stored procedure to return "I'm not dead yet" to keep the connection from timing out?</p>
http://stackoverflow.com/questions/1743376/why-use-ccombstr-instead-of-just-passing-a-wchar/1749485#17494851Answer by Roger Lipscombe for Why use CComBSTR instead of just passing a WCHAR*?Roger Lipscombe2009-11-17T15:05:35Z2009-11-17T15:05:35Z<p><code>BSTR</code> is not the same as <code>WCHAR[]</code>. <code>BSTR</code> values are prefixed with their length, as well as null-terminated.</p>
<p>If you're dealing with in-process objects that are written in C or C++, you'll usually get away with this, because the C/C++ code will probably assume that your BSTR is a null-terminated wide character string.</p>
<p>If, on the other hand, you're dealing with out-of-process/cross-machine objects, the proxy/stub marshalling code will assume that you really did pass a BSTR, and will expect to find a length field (it needs this to know how much data to marshal). This will go horribly wrong.</p>
<p>In short: if something expects a BSTR, call SysAllocString (or CComBSTR, or CString::AllocSysString).</p>
http://stackoverflow.com/questions/1743253/dealing-with-large-data-sets-in-wcf1Dealing with large data sets in WCF?Roger Lipscombe2009-11-16T16:26:06Z2009-11-16T19:00:37Z
<p>We've got a smart client that talks to a SQL Server database via WCF, displaying the entities in the database, and allowing the user to edit those entities.</p>
<p>Some of the WCF calls return a large data set. Since this data set doesn't change very often, I'm considering some sort of write-through cache on the client, and only getting the deltas from the WCF service.</p>
<p>That is: the client both reads from the service and writes to the service.</p>
<p>I'm not looking for disconnected/offline operation, but since the majority of the data doesn't change very often, I'd probably implement this with a local data store.</p>
<p>I don't want the local store to get too stale, and I don't think I'm too concerned about conflict resolution, because updates will always go straight to the WCF service -- think of it as a write-through cache.</p>
<p>Would Microsoft's Sync Framework be good for this? Could I use a local SQL-CE cache and perform the updates over WCF? The service end has a SQL Server 2005/2008 backend, but I don't want to talk to it directly. Does Sync Framework integrate well with WCF?</p>
<p>Are there other solutions out there? Should I roll something myself?</p>
http://stackoverflow.com/questions/1741223/enumerating-open-tabs-in-internet-explorer0Enumerating open tabs in Internet Explorer?Roger Lipscombe2009-11-16T10:07:38Z2009-11-16T15:41:48Z
<p>I'd like to find a way to enumerate the open tabs (and corresponding URLs) of the open tabs in Internet Explorer. I've found <a href="http://stackoverflow.com/questions/1112598/enumerate-browser-tabs-from-external-application">this question</a>, which suggests that it's not possible to do this in general, but I'm looking specifically at solutions for IE7 and IE8.</p>
<p>I'd prefer Win32-only solutions (I don't want to take a dependency on .NET, if possible).</p>
<p>I'm open to writing some kind of plugin for Internet Explorer, if that's necessary. Any pointers?</p>
http://stackoverflow.com/questions/1136043/winforms-aero-wizard-in-c0WinForms Aero Wizard in C#?Roger Lipscombe2009-07-16T07:51:39Z2009-11-14T21:40:31Z
<p>I'm looking to implement a wizard C# in WinForms (<em>not</em> WPF), and I'd like it to comply with the Aero Wizard guidelines.</p>
<p>Can anyone point me at some sample code?</p>
http://stackoverflow.com/questions/446268/visual-studio-varying-tab-width-options-by-vcproj-or-sln-file1Visual Studio: Varying tab width/options by .VCPROJ or .SLN file?Roger Lipscombe2009-01-15T10:24:53Z2009-11-12T12:36:36Z
<p>Some of our projects call for default Visual Studio tab options (width 4; keep tabs); some call for width 3; use spaces. Don't ask.</p>
<p>Rather than set these globally, is there anyway in which I could set this on a per-solution or per-project or even (emacs-style) per-file?</p>
<p>Visual Studio 2005 and 2008.</p>
http://stackoverflow.com/questions/1721172/using-linq-to-find-a-common-prefix2Using LINQ to find a common prefix?Roger Lipscombe2009-11-12T09:59:37Z2009-11-12T10:30:03Z
<p>I've got two sequences:</p>
<pre><code>IEnumerable<string> x = new[] { "a", "b", "c" };
IEnumerable<string> y = new[] { "a", "b", "d", "e" };
</code></pre>
<p>I'd like to find the common prefix of these two sequences (i.e. <code>"a", "b"</code>). Is there a succinct way to do this in LINQ?</p>
<p>Bear in mind that these aren't really <code>IEnumerable<string></code>; they're <code>IEnumerable<PathComponent></code>, where I have an implementation of <code>IEqualityComparer<PathComponent></code>.</p>
http://stackoverflow.com/questions/1721172/using-linq-to-find-a-common-prefix/1721321#17213212Answer by Roger Lipscombe for Using LINQ to find a common prefix?Roger Lipscombe2009-11-12T10:30:03Z2009-11-12T10:30:03Z<p>Dykam's mention of Zip led me to this:</p>
<pre><code>public static class EnumerableExtensions
{
public static IEnumerable<T> CommonPrefix<T>(this IEnumerable<T> xs,
IEnumerable<T> ys)
{
IEnumerator<T> x = xs.GetEnumerator();
IEnumerator<T> y = ys.GetEnumerator();
while (x.MoveNext() && y.MoveNext() && x.Current == y.Current)
{
yield return x.Current;
}
}
public static IEnumerable<TResult> CommonPrefix<T1, T2, TResult> (
this IEnumerable<T1> xs,
IEnumerable<T2> ys,
Func<T1, T2, TResult> selector)
{
IEnumerator<T1> x = xs.GetEnumerator();
IEnumerator<T2> y = ys.GetEnumerator();
while (x.MoveNext() && y.MoveNext() && x.Current == y.Current)
{
yield return selector(x.Current, y.Current);
}
}
}
</code></pre>
http://stackoverflow.com/questions/1060775/how-does-winver-or-win32winnt-affect-operating-system-version-as-shown-by-dumpb/1707502#17075020Answer by Roger Lipscombe for How does WINVER or WIN32_WINNT affect operating system version as shown by dumpbinRoger Lipscombe2009-11-10T12:08:58Z2009-11-10T12:14:48Z<p>The value of the "operating system version" field is set by <a href="http://msdn.microsoft.com/en-us/library/fcc1zstk.aspx" rel="nofollow">LINK /SUBSYSTEM</a>.</p>
<p>As an aside, the LINK /VERSION switch updates the "image version" field.</p>
http://stackoverflow.com/questions/479409/can-awe-use-4gb-ram-on-sql-server-2005-dev-edition-on-windows-xp-32-bit/479458#4794586Answer by Roger Lipscombe for Can AWE use >4GB RAM on SQL Server 2005 dev edition on Windows XP 32-bitRoger Lipscombe2009-01-26T11:22:43Z2009-11-09T09:31:37Z<p>Windows XP (32-bit) <a href="http://www.microsoft.com/whdc/system/platform/server/PAE/PAEmem.mspx" rel="nofollow">doesn't support</a> PAE (i.e. 36-bit physical addresses); it only supports 4GB of RAM. You need Windows 2003 (Enterprise or Datacenter) for PAE support. Since your OS can't use PAE, your applications can't use AWE.</p>
<p>You <em>could</em> run it with the /3GB switch, giving SQL Server more space to breathe.</p>
<p>Personally, I'd upgrade to a 64-bit version of Windows, probably Windows 7 x64.</p>
http://stackoverflow.com/questions/1662745/use-of-attributes-inotifypropertychanged/1662783#16627835Answer by Roger Lipscombe for Use of Attributes... INotifyPropertyChanged Roger Lipscombe2009-11-02T18:09:45Z2009-11-02T18:09:45Z<p>You can <a href="http://www.postsharp.org/forum/postsharp-core/new-plugin-for-inotifypropertychanged-propfu-t507.html" rel="nofollow">do this</a> with <a href="http://www.postsharp.org/" rel="nofollow">PostSharp</a>, but I don't think it'll be in the core compiler any time soon.</p>
http://stackoverflow.com/questions/1649450/linq-to-sql-queries-dont-look-at-pending-changes1Linq to SQL: Queries don't look at pending changesRoger Lipscombe2009-10-30T12:11:39Z2009-10-30T12:29:52Z
<p>Follow up to <a href="http://stackoverflow.com/questions/1649189/linq-to-sql-case-sensitivity-causing-problems">this question</a>. I have the following code:</p>
<pre><code>string[] names = new[] { "Bob", "bob", "BoB" };
using (MyDataContext dataContext = new MyDataContext())
{
foreach (var name in names)
{
string s = name;
if (dataContext.Users.SingleOrDefault(u => u.Name.ToUpper() == s.ToUpper()) == null)
dataContext.Users.InsertOnSubmit(new User { Name = name });
}
dataContext.SubmitChanges();
}
</code></pre>
<p>...and it inserts all three names ("Bob", "bob" and "BoB"). If this was Linq-to-Objects, it wouldn't.</p>
<p>Can I make it look at the pending changes as well as what's already in the table?</p>
http://stackoverflow.com/questions/1649189/linq-to-sql-case-sensitivity-causing-problems0Linq to SQL case sensitivity causing problemsRoger Lipscombe2009-10-30T11:04:55Z2009-10-30T12:08:55Z
<p>I've seen <a href="http://stackoverflow.com/questions/841226/case-insensitive-string-compare-in-linq-to-sql">this question</a>, but that's asking for case-insensitive comparisons when the database is case-sensitive. I'm having a problem with the exact opposite.</p>
<p>I'm using SQL Server 2005, my database collation is set to <code>Latin1_General_CI_AS</code>.</p>
<p>I've got a table, "User", like this:</p>
<pre><code>CREATE TABLE [dbo].[User] (
[Id] [int] IDENTITY(1,1) NOT NULL,
[Name] [nvarchar](max) NOT NULL,
CONSTRAINT [PK_Example] PRIMARY KEY CLUSTERED (
[Id] ASC
)
)
</code></pre>
<p>And I'm using the following code to populate it:</p>
<pre><code>string[] names = new[] { "Bob", "bob", "BoB" };
using (MyDataContext dataContext = new AppCompatDataContext())
{
foreach (var name in names)
{
string s = name;
if (dataContext.Users.SingleOrDefault(u => u.Name == s) == null)
dataContext.Users.InsertOnSubmit(new User { Name = name });
}
dataContext.SubmitChanges();
}
</code></pre>
<p>When I run this the first time, I end up with "Bob", "bob" and "BoB" in the table.</p>
<p>When I run it again, I get an <code>InvalidOperationException</code>: "Sequence contains more than one element", because the query against the database returns all 3 rows, and...</p>
<pre><code>SELECT * FROM [User] WHERE Name = 'bob'
</code></pre>
<p>... is case-insensitive.</p>
<p>That is: when I'm inserting rows, Linq to SQL appears to use C# case-sensitive comparisons. When I query later, Linq to SQL uses SQL Server case-insensitive comparisons.</p>
<p>I'd like the initial insert to use case-insensitive comparisons, but when I change the code as follows...</p>
<pre><code>if (dataContext.Users.SingleOrDefault(u =>
u.Name.Equals(s, StringComparison.InvariantCultureIgnoreCase)
) == null)
</code></pre>
<p>... I get a <code>NotSupportedException</code>: "Method 'Boolean Equals(System.String, System.StringComparison)' has no supported translation to SQL."</p>
<p><strong>Question:</strong> how do I get the initial insert to be case-insensitive or, more precisely, match the collation of the column in the database?</p>
<p><strong>Update:</strong> This doesn't appear to be my problem. My problem appears to be that <code>SingleOrDefault</code> doesn't actually look at the pending inserts at all.</p>
http://stackoverflow.com/questions/381211/debugging-tracing-wmi-queries1Debugging (Tracing) WMI queries?Roger Lipscombe2008-12-19T15:04:35Z2009-10-28T20:05:44Z
<p>I've got a third-party program that's making WMI queries to local WMI providers (so it's not using DCOM, so packet-sniffers are out). I'd like to find out what queries these are.</p>
<p>It's also on XP, so the new Vista WMI tracing infrastructure is out, as well, unfortunately.</p>
<p>Any pointers?</p>
http://stackoverflow.com/questions/1593419/internet-explorer-wont-download-an-updated-activex-control0Internet Explorer won't download an updated ActiveX controlRoger Lipscombe2009-10-20T09:23:53Z2009-10-27T05:11:06Z
<p>We've got an ActiveX control deployed across a large number of machines (in an intranet site). It's referenced in HTML as follows (names changed to protect the innocent):</p>
<pre><code><object id="foo" style="DISPLAY: none" codebase="foo.cab#version=3.0.0.0"
height="10" width="10"
classid="CLSID:F00F00F0-0F00-F00F-00F0-0F00F00F00F0">
</object>
</code></pre>
<p>We're about to release v3.1 of our product, so the page now reads:</p>
<pre><code><object id="foo" style="DISPLAY: none" codebase="foo.cab#version=3.1.0.0"
height="10" width="10"
classid="CLSID:F00F00F0-0F00-F00F-00F0-0F00F00F00F0">
</object>
</code></pre>
<p>However, Internet Explorer doesn't seem to want to download the newer CAB file.</p>
<p>What are we doing wrong?</p>
http://stackoverflow.com/questions/1615408/how-clean-is-uninstalling-the-service-packs-from-visual-studio-2005/1623530#16235300Answer by Roger Lipscombe for How clean is uninstalling the Service Packs from Visual Studio 2005?Roger Lipscombe2009-10-26T07:48:34Z2009-10-26T07:48:34Z<p>Since it seems that your actual problem is the dependency on the CRT DLLs, you should look at the <code>_USE_RTM_VERSION</code> <a href="http://www.differentpla.net/content/2007/02/things-i-found-out-today-while-looking-at-side-by-side-dlls" rel="nofollow">macro</a>. There are corresponding macros for ATL and MFC.</p>
http://stackoverflow.com/questions/540636/can-i-get-moq-to-add-attributes-to-the-mock-class1Can I get Moq to add attributes to the mock class?Roger Lipscombe2009-02-12T09:41:34Z2009-10-20T10:40:12Z
<p>I'm writing a command-line interface to my project. The user enters "create project foo", and it finds the controller responsible for "project" and then invokes the <code>Create</code> method, passing "foo" as the first argument.</p>
<p>It relies heavily on attributes and reflection: the controller looks something like this:</p>
<pre><code>[ControllerFor("project")]
class ProjectController
{
[ControllerAction("create")]
public object Create(string projectName) { /* ... */ }
}
</code></pre>
<p>I'd like to use Moq in the unit tests for the parser, something like this:</p>
<pre><code>Mock<IProjectsController> controller = new Mock<IProjectsController>();
controller.Expect(f => f.Create("foo"));
parser.Register(controller.Object);
parser.Execute("create project foo");
controller.VerifyAll();
</code></pre>
<p>Adding the attributes to the interface doesn't appear to work -- they're not inherited by derived classes.</p>
<p>Can I get Moq to add attributes to the class being mocked?</p>
http://stackoverflow.com/questions/1136032/using-the-mvc-mvp-or-mvvm-pattern-for-a-wizard-written-in-winforms1Using the MVC, MVP or MVVM pattern for a wizard written in WinForms?Roger Lipscombe2009-07-16T07:50:00Z2009-10-20T09:28:55Z
<p>All of the WinForms wizards I've written in the past have a high degree of coupling between the UI and the model. That is: the individual pages know about enabling/disabling the Next/Previous buttons, how to react to the Next button being pressed, etc. It makes it all hard to test, because to test any of the logic, you've got to put a lot of scaffolding together first.</p>
<p>I've been using MVC (in the form of ASP.MVC) recently, and I'm finding that easy to test. I've also had a play with WPF, and I <em>think</em> I'm getting my head around M-V-VM.</p>
<p>I'm struggling with the M-V-P pattern in WinForms (i.e. no WPF-style databinding). In particular, I need to implement a wizard.</p>
<p>Would I have a controller per page? A view model that governs the whole wizard? Something else?</p>
<p>This is in WinForms (not WPF), in C#. .Net 2.0 preferred.</p>
http://stackoverflow.com/questions/1136032/using-the-mvc-mvp-or-mvvm-pattern-for-a-wizard-written-in-winforms/1593452#15934520Answer by Roger Lipscombe for Using the MVC, MVP or MVVM pattern for a wizard written in WinForms?Roger Lipscombe2009-10-20T09:28:55Z2009-10-20T09:28:55Z<p>In the end I opted for something between MVVM and MVP, using a mixture of WinForms databinding and view callback interfaces. I guess it's closer to MVP than MVVM. Each page has a viewmodel/presenter, and the wizard itself has its own viewmodel/presenter to govern flow (certain options skip later wizard pages, for example).</p>
<p>It turned out pretty well, and it fairly easy to write unit tests for each of the presenter classes.</p>
<p>The underlying wizard framework doesn't use MVVM or MVP. It's just plain ol' WinForms code.</p>
http://stackoverflow.com/questions/1572016/whats-the-ampersand-for-when-used-after-class-name-like-ostream-operator/1572028#15720283Answer by Roger Lipscombe for What's the ampersand for when used after class name like ostream& operator <<(...)?Roger Lipscombe2009-10-15T12:22:58Z2009-10-15T12:22:58Z<p>In C++ type declarations, the ampersand means "reference". In this case <code>operator <<</code> returns a reference to an <code>ostream</code> object.</p>
<p>Since it actually returns <code>*this</code> it's actually the same <code>ostream</code> object, and means you can chain calls to <code>operator <<</code>, similar to this:</p>
<pre><code>os << "Hello" << " " << "World" << endl;
</code></pre>
http://stackoverflow.com/questions/265449/windbg-with-minidump-from-native-32-bit-app-crashing-on-64-bit-windows-wont-lo0WinDbg, with minidump from native 32-bit app crashing on 64-bit Windows, won't load symbols for system DLLsRoger Lipscombe2008-11-05T15:18:56Z2009-10-12T06:27:37Z
<p>I've got a minidump file from a crash in one of our apps. It's a 32-bit native app, and it was running on 64-bit Windows.</p>
<p>If I load the minidump file into WinDbg, WinDbg won't load the symbols for the system DLLs. I've got my symbol paths configured correctly:</p>
<pre><code>_NT_SYMBOL_PATH=SRV*C:\WebSymbols*http://msdl.microsoft.com/download/symbols
</code></pre>
<p>...because WinDbg correctly loads symbols for minidumps created on 32-bit Windows. It just won't load symbols for DLLs in the SysWOW64 directory.</p>
<p>I've tried 32-bit WinDbg (from Debugging Tools 6.9) on 32-bit Windows 2003, and 64-bit WinDbg (also from Debugging Tools 6.9) on 64-bit Windows 2008. Both fail to load the symbols. This is from the 32-bit WinDbg:</p>
<pre>0:014> !sym noisy
noisy mode - symbol prompts on
0:014> .reload
....................................................................................
Loading unloaded module list
..
SYMSRV: C:\WebSymbols\ntdll.dll\48E714D0170000\ntdll.dll not found
SYMSRV: http://msdl.microsoft.com/download/symbols/ntdll.dll/48E714D0170000/ntdll.dll not found
DBGENG: C:\Windows\SysWOW64\ntdll.dll - Couldn't map image from disk.
Unable to load image C:\Windows\SysWOW64\ntdll.dll, Win32 error 0n2
DBGENG: ntdll.dll - Partial symbol image load missing image info
DBGHELP: Module is not fully loaded into memory.
DBGHELP: Searching for symbols using debugger-provided data.
SYMSRV: C:\WebSymbols\wntdll.pdb\6686D0C5D0554E14953396093DA218A92\wntdll.pdb not found
SYMSRV: http://msdl.microsoft.com/download/symbols/wntdll.pdb/6686D0C5D0554E14953396093DA218A92/wntdll.pdb not found
DBGHELP: wntdll.pdb - file not found
*** WARNING: Unable to verify timestamp for ntdll.dll
*** ERROR: Module load completed but symbols could not be loaded for ntdll.dll
DBGHELP: ntdll - no symbols loaded
SYMSRV: C:\WebSymbols\kernel32.dll\48E7156Cf0000\kernel32.dll not found
SYMSRV: http://msdl.microsoft.com/download/symbols/kernel32.dll/48E7156Cf0000/kernel32.dll not found
DBGENG: C:\Windows\SysWOW64\kernel32.dll - Couldn't map image from disk.
Unable to load image C:\Windows\SysWOW64\kernel32.dll, Win32 error 0n2
DBGENG: kernel32.dll - Partial symbol image load missing image info
DBGHELP: Module is not fully loaded into memory.
DBGHELP: Searching for symbols using debugger-provided data.
SYMSRV: C:\WebSymbols\wkernel32.pdb\B0C3B36CC7EF4F3E9C168E186A5A6FEB2\wkernel32.pdb not found
SYMSRV: http://msdl.microsoft.com/download/symbols/wkernel32.pdb/B0C3B36CC7EF4F3E9C168E186A5A6FEB2/wkernel32.pdb not found
DBGHELP: wkernel32.pdb - file not found
*** WARNING: Unable to verify timestamp for kernel32.dll
*** ERROR: Module load completed but symbols could not be loaded for kernel32.dll
DBGHELP: kernel32 - no symbols loaded
SYMSRV: C:\WebSymbols\KERNELBASE.dll\48E7156D5a000\KERNELBASE.dll not found
SYMSRV: http://msdl.microsoft.com/download/symbols/KERNELBASE.dll/48E7156D5a000/KERNELBASE.dll not found
DBGENG: C:\Windows\SysWOW64\KERNELBASE.dll - Couldn't map image from disk.
DBGENG: KERNELBASE.dll - Partial symbol image load missing image info
DBGHELP: Module is not fully loaded into memory.
DBGHELP: Searching for symbols using debugger-provided data.
SYMSRV: C:\WebSymbols\wkernelbase.pdb\A8683F0C515F469B833E3FA562E0DB251\wkernelbase.pdb not found
SYMSRV: http://msdl.microsoft.com/download/symbols/wkernelbase.pdb/A8683F0C515F469B833E3FA562E0DB251/wkernelbase.pdb not found
DBGHELP: wkernelbase.pdb - file not found
*** WARNING: Unable to verify timestamp for KERNELBASE.dll
*** ERROR: Module load completed but symbols could not be loaded for KERNELBASE.dll
DBGHELP: KERNELBASE - no symbols loaded</pre>
<p>Any ideas? Are the symbols just not available on Microsoft's symbol server?</p>
http://stackoverflow.com/questions/195255/best-wizard-control-for-net-windows-forms/195263#1952633Answer by Roger Lipscombe for Best Wizard Control for .NET Windows Forms?Roger Lipscombe2008-10-12T09:08:31Z2009-10-03T06:29:38Z<p>I rolled my own: Implementing a Wizard in C#: <a href="http://www.differentpla.net/content/2005/02/implementing-wizard-c" rel="nofollow">part 1</a>, <a href="http://www.differentpla.net/content/2005/02/implementing-wizard-c-part-2" rel="nofollow">part 2</a></p>
http://stackoverflow.com/questions/1488796/microsoft-debug-file-server-service/1488802#14888022Answer by Roger Lipscombe for Microsoft Debug-File Server/ServiceRoger Lipscombe2009-09-28T19:07:22Z2009-09-29T06:46:11Z<p>Assuming you're talking about the Microsoft Symbol Server, then:</p>
<ol>
<li>Yes. Security (and other) patches are available on the symbol server. Hotfixes where you have to get them from PSS (support) may not be.</li>
<li>Patches appear fairly quickly. I think they're actually pushed out as part of Microsoft's build/release process. Release candidates and CTPs don't always appear immediately (Windows 7 RC didn't, but the symbol package was separately downloadable via Connect).</li>
</ol>
http://stackoverflow.com/questions/49224/good-crash-reporting-library-in-c/1371750#13717501Answer by Roger Lipscombe for Good crash reporting library in c#Roger Lipscombe2009-09-03T06:46:34Z2009-09-25T15:32:41Z<p>Sign up for <a href="https://winqual.microsoft.com/default.aspx" rel="nofollow">WinQual</a> and let Microsoft handle all of the leg work for you.</p>
<p>(you'll need IE to click on the WinQual link)</p>
http://stackoverflow.com/questions/250868/is-it-possible-to-write-code-to-write-code/251063#251063Comment by Roger Lipscombe on Is it possible to write code to write code?Roger Lipscombe2009-11-26T07:58:01Z2009-11-26T07:58:01ZThat doesn't necessarily mean that it's a good, idea, though :-)http://stackoverflow.com/questions/1764898/how-do-i-safely-stop-a-c-net-thread-running-in-a-windows-service/1764924#1764924Comment by Roger Lipscombe on How do I safely stop a C# .NET thread running in a Windows service?Roger Lipscombe2009-11-24T09:15:04Z2009-11-24T09:15:04ZYou don't need an event to tell you when the thread stops; just call Thread.Join.http://stackoverflow.com/questions/1774876/password-hashing-at-client-browserComment by Roger Lipscombe on Password hashing at client browserRoger Lipscombe2009-11-21T12:42:47Z2009-11-21T12:42:47ZGranted that it would make the hash unique to the site -- useful if the user uses the same password on multiple sites; doesn't prevent replay against the same site.
And, surely if the hash is salted, then either the salt has to go from the client to the server -- no more secure than before; or the other way, in which case it <i>is</i> challenge/response.http://stackoverflow.com/questions/1775173/is-a-gaming-machine-better-for-software-development/1775199#1775199Comment by Roger Lipscombe on Is a gaming machine better for software development?Roger Lipscombe2009-11-21T12:35:33Z2009-11-21T12:35:33ZRAID 0 is fine for a development workstation, provided that your source code repository is on something more reliable (e.g. RAID5 on a separate server, with regular backups).http://stackoverflow.com/questions/1774876/password-hashing-at-client-browserComment by Roger Lipscombe on Password hashing at client browserRoger Lipscombe2009-11-21T08:00:06Z2009-11-21T08:00:06ZI hope you're planning to either send the hash over a secure channel, or this is part of a challenge/response mechanism. Otherwise, this is no more secure than sending the password itself in plain text...http://stackoverflow.com/questions/1729505/get-handle-of-a-window-that-has-no-title-c/1729703#1729703Comment by Roger Lipscombe on Get handle of a window that has no title.. (C#)Roger Lipscombe2009-11-17T16:20:50Z2009-11-17T16:20:50ZYou're assuming that the OP wants to include the child windows (probably not). OTOH (as you imply) not every top-level window is the MainWindow of a process...http://stackoverflow.com/questions/1743253/dealing-with-large-data-sets-in-wcf/1743980#1743980Comment by Roger Lipscombe on Dealing with large data sets in WCF?Roger Lipscombe2009-11-16T19:02:03Z2009-11-16T19:02:03ZThe client also makes changes to the data. It could be two-way replication, except that -- because I can assume that it's always connected -- it seemed easier to do some kind of write-through caching. We're kinda already committed to WCF, as well.http://stackoverflow.com/questions/630285/programmatically-getting-per-process-network-statistics-on-windows/691146#691146Comment by Roger Lipscombe on Programmatically getting per-process network statistics on Windows?Roger Lipscombe2009-11-16T16:32:56Z2009-11-16T16:32:56ZI'll take your word that you looked at this problem and decided that "write a custom TDI filter driver" was the best solution. I assumed that if you have some code you could have published, you would have done, and I'm not one of those people that says "show m3 the c0deZ!". Pointing me in the right direction is plenty, thanks.http://stackoverflow.com/questions/528810/visual-studio-detaches-from-application-as-soon-as-debugging-starts/532849#532849Comment by Roger Lipscombe on Visual Studio detaches from application as soon as debugging startsRoger Lipscombe2009-11-13T16:55:20Z2009-11-13T16:55:20ZDoing my bit for least privilege: VS can debug fine on Vista w/o admin privileges -- as long as the process to be debugged is running under the same account.http://stackoverflow.com/questions/446268/visual-studio-varying-tab-width-options-by-vcproj-or-sln-file/1721896#1721896Comment by Roger Lipscombe on Visual Studio: Varying tab width/options by .VCPROJ or .SLN file?Roger Lipscombe2009-11-12T22:18:42Z2009-11-12T22:18:42ZThis could be useful, combined with handling project load events and looking in the project for a marker property or file to control the settings. Hmmm...http://stackoverflow.com/questions/1721172/using-linq-to-find-a-common-prefix/1721201#1721201Comment by Roger Lipscombe on Using LINQ to find a common prefix?Roger Lipscombe2009-11-12T10:34:21Z2009-11-12T10:34:21Z@Matt: Tried that; works except that you need to ensure that 'y' is the longer of the two sequences...http://stackoverflow.com/questions/1721172/using-linq-to-find-a-common-prefix/1721228#1721228Comment by Roger Lipscombe on Using LINQ to find a common prefix?Roger Lipscombe2009-11-12T10:24:40Z2009-11-12T10:24:40Z@Yogesh: probably, otherwise you'll be subject to more downvotes.http://stackoverflow.com/questions/1708894/use-a-sql-server-2008-database-on-a-nas-shareComment by Roger Lipscombe on Use a SQL Server 2008 database on a NAS shareRoger Lipscombe2009-11-10T15:43:07Z2009-11-10T15:43:07ZTo clarify: your SVN working copy is on the NAS share?http://stackoverflow.com/questions/1662637/travelling-visual-studio-developers/1662666#1662666Comment by Roger Lipscombe on Travelling Visual Studio developersRoger Lipscombe2009-11-02T18:04:51Z2009-11-02T18:04:51ZVisual Studio 2008 is just-about-usable on my Samsung NC10 (with 2GB RAM), but I certainly wouldn't want to use it daily.http://stackoverflow.com/questions/1649450/linq-to-sql-queries-dont-look-at-pending-changes/1649521#1649521Comment by Roger Lipscombe on Linq to SQL: Queries don't look at pending changesRoger Lipscombe2009-10-30T14:50:35Z2009-10-30T14:50:35ZPutting SubmitChanges inside the loop would result in extra round-trips to the database. This is undesirable.