User mdb - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T08:09:09Z http://stackoverflow.com/feeds/user/8562 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1935561/cant-run-windows-service-from-asp-net-page/1935589#1935589 3 Answer by mdb for Can't run Windows service from ASP.NET page? mdb 2009-12-20T11:39:44Z 2009-12-20T11:47:10Z <p>The account used for the identity of your ASP.NET application pool ("<a href="http://msdn.microsoft.com/en-us/library/ms684272%28VS.85%29.aspx" rel="nofollow">Network Service</a>" by default) does not have the <a href="http://msdn.microsoft.com/en-us/library/ms685981%28VS.85%29.aspx" rel="nofollow">permissions required to start a service</a>.</p> <p>To fix this issue, you have a few options:</p> <ol> <li><p>Re-architect your site to not require interactions between ASP.NET pages and the service control manager. I really can't think of a good reason to require this (the service can simply be started at boot time, and remain running: if the service crashes, you should fix the cause of that, and/or use the corrective actions provided by the SCM. If a service restart is needed to kick of some kind of processing, use an IPC mechanism, such as sockets or named pipes, to communicate between your web app and the service instead).</p></li> <li><p>Create a service account with the appropriate permissions (basically, membership of the local Administrators group) as described in detail <a href="http://msdn.microsoft.com/en-us/library/ms998297.aspx" rel="nofollow">here</a>. Do note that this has several security implications, none of them particularly good.</p></li> </ol> http://stackoverflow.com/questions/1882014/recommended-way-to-work-with-audio-in-net-applications 3 Recommended way to work with audio in .NET applications? mdb 2009-12-10T16:02:42Z 2009-12-12T16:59:56Z <p>I'm trying to get started with a simple audio application under .NET 3.5 (preferably in VB.NET, but will happily use C#). What I'd like to do is:</p> <ul> <li>Continuously record audio from (the default) Windows audio input device in 8-bits-per-sample PCM format</li> <li>For every N bytes captured, do some analysis on the raw audio (some RMS and/or SPL calculations -- basically what you'd need for a pretty VU bar graph thingy)</li> <li>If the audio fragment is found interesting after analysis, save it using a compressed file format (e.g. MP3)</li> </ul> <p>First thing I noticed is that audio support in the basic .NET Framework is pretty much nonexistent. Googling around a bit found some sample code, mostly using Managed DirectX. However, the lack of MSDN documentation, vintage of the libraries (2004) and the following menacing MDA exception in VS.NET 2008, convinced me this is a dead end:</p> <pre><code>Message: DLL 'Microsoft.DirectX.dll' is attempting managed execution inside OS Loader lock. Do not attempt to run managed code inside a DllMain or image initialization function since doing so can cause the application to hang. </code></pre> <p>...which I think loosely translates as "don't even <i>try</i> to use this stuff." Am I missing something here, or is Managed DirectX really dead? <a href="http://stackoverflow.com/questions/1502390/does-xna-effectively-replace-managed-directx">Another StackOverlow question</a> suggests that XNA is a replacement for Managed DirectX, but it lacks the kind of low-level functionality I need.</p> <p>So, which API or third-party library is actually useful for audio development under .NET? Using COM interop or P/Invoke is acceptable, as long as there's some decent .NET example code available to get started with...</p> http://stackoverflow.com/questions/1881122/c-how-to-communicate-with-sftp-server/1881145#1881145 2 Answer by mdb for C#: How to communicate with SFTP server mdb 2009-12-10T13:56:59Z 2009-12-10T13:56:59Z <p>Unfortunately, SFTP is not natively supported by WinInet or any other standard Windows libraries. </p> <p>I've had good luck with /n Software's <a href="http://nsoftware.com/ipworks/ssh" rel="nofollow">IP*Works SSH for .NET</a> in talking to a large variety of SFTP servers.</p> http://stackoverflow.com/questions/1881050/creating-a-huge-dummy-file-in-a-matter-of-seconds-in-c/1881076#1881076 10 Answer by mdb for Creating a Huge Dummy File in a Matter of Seconds in C# mdb 2009-12-10T13:45:48Z 2009-12-10T13:48:53Z <p>Simply create the file, seek to a suitably large offset, and write a single byte:</p> <pre><code>FileStream fs = new FileStream(@"c:\tmp\huge_dummy_file", FileMode.CreateNew); fs.Seek(2048L * 1024 * 1024, SeekOrigin.Begin); fs.WriteByte(0); fs.Close(); </code></pre> <p>This will yield a 2GB file with basically unpredictable contents, which should be fine for your purposes.</p> http://stackoverflow.com/questions/1815072/how-to-remove-a-row-item-from-a-vb6-listview-using-a-button/1815133#1815133 0 Answer by mdb for How to remove a row (item) from a VB6 ListView using a button? mdb 2009-11-29T09:58:39Z 2009-11-29T20:02:55Z <p>What controls have you already used and what code have you already written to make this happen? (You can add this information to your question by editing it). </p> <p>Anyway, I assume you at least have a ListView control (e.g. ListView1) and a Button control (e.g. DeleteRow), and that you know about that button's click event, DeleteRow_Click (if not, double-click the button in the form designer, and you'll see what I mean).</p> <p>Now, you'll need to put some code in the DeleteRow_Click event. Some hints:</p> <ul> <li><p>The currently selected row (item) in the ListView is ListView1.SelectedItem. SelectedItem is an object with some useful properties: you can explore these using VB's Object Explorer and/or Intellisense in the editor. Also, consider what happens when NO item is selected in the ListView: you can also check this by putting a breakpoint on a line that assigns SelectedItem to a variable, and then use the debugger to inspect it after you run your app and click the button without first selecting an item in the listbox (in an actual application, you would usually disable the button until an item had been selected, but let's not get ahead of ourselves here...)</p></li> <li><p>ListView1 also has a collection that represents all items in it: it's called ListItems, and has several useful properties and methods (such as .Remove...) as well, ready for you to explore using F2 or Intellisense</p></li> <li><p>To ask the user if he/she is really sure about the whole removal thing, look into the MessageBox function: this function is a bit tricky, since it maps pretty directly to the underlying Windows API call, but the general idea is that you pass in some flag values (by adding them together) to indicate what kind of message box you want (icon- and button-wise). You then check the return value to see which button the user selected.</p></li> </ul> http://stackoverflow.com/questions/1722305/how-to-import-pkcs8-rsa-privatekey-created-by-openssl-in-c/1728802#1728802 0 Answer by mdb for How to import PKCS#8 RSA privateKey (created by OpenSSL) in C# mdb 2009-11-13T12:00:12Z 2009-11-13T12:29:41Z <p>The easiest way to do this <em>with</em> an external library, is using the (free) <a href="http://www.chilkatsoft.com/privatekey-features.asp" rel="nofollow">Chillkat Public / Private Key Component</a>: using that, importing the key can be done using <a href="http://www.example-code.com/csharp/rsa%5FsignPkcs8.asp" rel="nofollow">just a few lines of code</a> and if you're willing to pay the $149 or so for the rest of the library, it will make dealing with general crypto concepts a lot easier as well.</p> <p>And unlike the regular Microsoft .NET Framework, the Mono project <em>does</em> seem to have a <a href="http://www.go-mono.com/docs/index.aspx?tlink=18@ecma%3a349%23PKCS8%2f" rel="nofollow">PKCS8 implementation</a> for which the <a href="http://www.koders.com/csharp/fid0005D522A9B5E25FEF70E4D9DA37822E5E9725EC.aspx" rel="nofollow">full C# source</a> is available. This may be suitable as a starting point in case you absolutely cannot rely on external libraries, assuming the (LGPL 2.0) license associated with the Mono code works for you...</p> <p>Finally, the <a href="ftp://ftp.rsasecurity.com/pub/pkcs/doc/pkcs-8.doc" rel="nofollow">PKCS #8 format</a> is not too difficult to parse, and the RSA/DSA key pair objects are as per <a href="ftp://ftp.rsasecurity.com/pub/pkcs/pkcs-11/v2-30/pkcs-11v2-30m1-d7.pdf" rel="nofollow">PKCS #11</a> and relatively easy to convert to a .NET X509Certificate once you figure out where all the bits go -- I actually did this in VB.NET a while ago, but unfortunately am not able to share that code.</p> http://stackoverflow.com/questions/1600962/c-displaying-the-build-date/1600990#1600990 6 Answer by mdb for C# - displaying the build date mdb 2009-10-21T13:56:53Z 2009-10-21T14:06:50Z <p>Jeff Atwood had a few things to say about this issue in <a href="http://www.codinghorror.com/blog/archives/000264.html" rel="nofollow">Determining Build Date the hard way</a>.</p> <p>The most reliable method turns out to be retrieving the linker timestamp from the <a href="http://support.microsoft.com/kb/65122" rel="nofollow">PE header</a> embedded in the executable file -- some C# code (by Joe Spivey) for that from the comments to Jeff's article:</p> <pre><code>private DateTime RetrieveLinkerTimestamp() { string filePath = System.Reflection.Assembly.GetCallingAssembly().Location; const int c_PeHeaderOffset = 60; const int c_LinkerTimestampOffset = 8; byte[] b = new byte[2048]; System.IO.Stream s = null; try { s = new System.IO.FileStream(filePath, System.IO.FileMode.Open, System.IO.FileAccess.Read); s.Read(b, 0, 2048); } finally { if (s != null) { s.Close(); } } int i = System.BitConverter.ToInt32(b, c_PeHeaderOffset); int secondsSince1970 = System.BitConverter.ToInt32(b, i + c_LinkerTimestampOffset); DateTime dt = new DateTime(1970, 1, 1, 0, 0, 0); dt = dt.AddSeconds(secondsSince1970); dt = dt.AddHours(TimeZone.CurrentTimeZone.GetUtcOffset(dt).Hours); return dt; } </code></pre> http://stackoverflow.com/questions/1582147/vs2008-remote-debugging-problems-from-32-bit-windows-xp-client-to-64-bit-windows/1582168#1582168 0 Answer by mdb for VS2008 Remote Debugging problems from 32-bit Windows XP client to 64-bit Windows 2008 Server mdb 2009-10-17T13:02:21Z 2009-10-17T13:02:21Z <p>According to <a href="http://msdn.microsoft.com/en-us/library/ms184681%28VS.80%29.aspx" rel="nofollow">How to: Debug 64-Bit Applications</a> on MSDN, 32-to-64 bit debugging should work just fine, as long as you're running the correct version of the remote debugger on the target machine:</p> <blockquote> <p>If you are debugging remotely, Visual Studio 2005 can run under WOW64 or on a 32-bit machine. You can debug both IA64 and x64 applications, as well as 32-bit applications running under or x64 WOW mode or on 32-bit platforms.</p> <p>To debug a 64-bit application running on a remote computer, you need to install the 64-bit remote debugger on the remote computer. The 64-bit remote debugger is available on the last disc of your Visual Studio 2005 installation set.</p> <p>To debug a 64-bit application, you must use the correct version, which is Remote Debugger (x64) on the Start menu.</p> </blockquote> <p>The correct version of the Visual Studio 2008 Service Pack 1 Remote Debugger can be <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=440ec902-3260-4cdc-b11a-6a9070a2aaab&amp;displaylang=en" rel="nofollow">downloaded directly from Microsoft</a>.</p> http://stackoverflow.com/questions/1550823/create-pdf-file-from-binary-data-using-itextsharp/1550845#1550845 1 Answer by mdb for Create pdf file from Binary data using itextSharp mdb 2009-10-11T14:41:27Z 2009-10-11T14:48:02Z <p>Assuming your MemStream already contains all the bytes making up a valid PDF file, you should be able to convince the visitor's browser to prompt to save it as a file by adding the following statement before Response.BinaryWrite:</p> <pre><code>Response.AddHeader("Content-Disposition", "attachment; filename=Whatever.pdf") </code></pre> <p>As an aside, code after Response.End generally isn't executed: your MemStream will still be closed and disposed of just fine in this case due to going out of scope, but in general you should treat Response.End the same as Exit Sub, and code accordingly, e.g.</p> <pre><code>Using ms As New IO.MemoryStream ... Response.End() End Using </code></pre> http://stackoverflow.com/questions/1548150/how-to-save-a-setting-for-all-users-under-vista/1548191#1548191 1 Answer by mdb for How to Save a setting for All users under Vista mdb 2009-10-10T15:11:02Z 2009-10-10T15:18:24Z <p>As Quintin correctly replied, the %ALLUSERSPROFILE% path (Environment.SpecialFolder.CommonApplicationData in .NET) is what you're looking for.</p> <p>Two important things to keep in mind, though, when doing so:</p> <ul> <li><p>It's good practice to create a subfolder for your company and application using your application installer. E.g:</p> <pre><code>Dim DataPath = Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData) DataPath = IO.Path.Combine(DataPath, "ACME Corp.") DataPath = IO.Path.Combine(DataPath, "Widget App") DataPath = IO.Path.Combine(DataPath, "1.0") '//Optional, but possibly handy to easily migrate configuration files across major app versions </code></pre></li> <li><p>Although all users will have read access to the folder you create, write access is by default limited to the the account that created the folder, as well as members of the Administrators group and LocalSystem. If all users should be able to modify a common configuration file (created by one user, but re-written by another non-Admin user), you'll need to arrange for this access explicitly. Again, this is best done from your app installer, but could be done from code as well, for example when your app is first run:</p> <pre><code>Dim di As New IO.DirectoryInfo(DataPath) Dim ds = di.GetAccessControl ds.AddAccessRule(New Security.AccessControl.FileSystemAccessRule(...)) di.SetAccessControl(ds) </code></pre></li> </ul> http://stackoverflow.com/questions/1526613/create-installers-for-add-ins-using-visual-studio/1526708#1526708 2 Answer by mdb for Create Installers for Add-ins using Visual Studio? mdb 2009-10-06T16:35:05Z 2009-10-06T16:35:05Z <p>There's a 2-part series on MSDN outlining this in detail:</p> <p>Deploying a Visual Studio Tools for the Office System 3.0 Solution for the 2007 Microsoft Office System Using Windows Installer <a href="http://msdn.microsoft.com/en-us/library/cc563937.aspx" rel="nofollow">(Part 1 of 2)</a> and <a href="http://msdn.microsoft.com/en-us/library/cc616991.aspx" rel="nofollow">(Part 2 of 2)</a></p> http://stackoverflow.com/questions/1510575/rss-library-in-net/1510605#1510605 3 Answer by mdb for Rss library in .NET mdb 2009-10-02T16:27:32Z 2009-10-02T16:27:32Z <p>According to <a href="http://www.google.nl/search?q=rss+library+.net" rel="nofollow">Google</a>, there are a few options:</p> <ul> <li><a href="http://www.rssdotnet.com/" rel="nofollow">RSS.NET</a> - with an updated version <a href="http://www.web20tools.net/" rel="nofollow">over here</a></li> <li><a href="http://www.codeplex.com/FeedDotNet/" rel="nofollow">FeedDotNet</a></li> </ul> <p>Also, many commercial networking toolkits for .NET (e.g. /n Software's <a href="http://nsoftware.com/portal/dotnet/" rel="nofollow">IP*Works!</a>) support RSS.</p> <p>In addition to that, the <a href="http://www.rssboard.org/rss-specification" rel="nofollow">RSS protocol</a> itself isn't too involved: using .NET's native <a href="http://msdn.microsoft.com/en-us/library/f3wxbf3f%28VS.80%29.aspx" rel="nofollow">HttpClient</a> and some LINQ to XML magic, it <a href="http://weblogs.asp.net/scottgu/archive/2007/08/07/using-linq-to-xml-and-how-to-build-a-custom-rss-feed-reader-with-it.aspx" rel="nofollow">should not be too difficult</a> to implement a RSS client yourself...</p> http://stackoverflow.com/questions/1375410/very-simple-c-csv-reader/1375452#1375452 0 Answer by mdb for Very simple C# CSV reader mdb 2009-09-03T19:31:17Z 2009-09-03T19:31:17Z <p>Have a look at Marcos Meli's open-source <a href="http://www.filehelpers.com/" rel="nofollow">FileHelpers for .NET</a>. The <a href="http://www.filehelpers.com/quick%5Fstart.html" rel="nofollow">Quick-Start Delimited</a> sample should do pretty much what you want, and the framework is quite useful for other scenarios as well.</p> http://stackoverflow.com/questions/1208999/how-to-speed-up-export-of-net-datagrid-to-excel/1209093#1209093 2 Answer by mdb for How to speed up export of .NET DataGrid to Excel? mdb 2009-07-30T20:19:42Z 2009-07-31T17:32:53Z <p>When looking at the performance of your solution, it's important to realize that you're not actually exporting your DataGrid to Excel: you're in fact writing its contents as HTML, and then 'tricking' Windows into opening that HTML using Excel. Excel will then convert the HTML table to a worksheet as well as it can.</p> <p>The bottleneck here is most likely Excel's conversion process: especially on large tables, parsing the HTML is a lot of work, involving lots of slow guesswork about datatypes and conversions. Possibly, the HTML is even so unwieldy that downloading it from the server to the client introduces a noticeable delay as well.</p> <p>Since you don't control the code involved with either of those bottlenecks, there's not much you can do to eliminate them, other than by avoiding them altogether by switching to a more efficient format, i.e. native Excel instead of HTML.</p> <p>There are several .NET libraries that can help you with this, both <a href="http://spreadsheetgear.com/" rel="nofollow">commercial</a> as well as <a href="http://www.carlosag.net/Tools/ExcelXmlWriter/" rel="nofollow">free</a>. Googling around will most likely find lots of other alternatives as well. Please do note that your server-side code will become significantly more involved: you'll have to set up the spreadsheet structure/formatting, and loop through the DataGrid to export each row. But the end-result, the XLS file, will be more compact and efficient for it, and will also be more useful (i.e. editable) for your users than your current HTML export.</p> http://stackoverflow.com/questions/756046/on-error-for-windows-application/756128#756128 0 Answer by mdb for On Error for windows application mdb 2009-04-16T13:30:14Z 2009-04-16T13:30:14Z <p>For both ASP.NET and WinForms apps, there is the AppDomain UnhandledException event:</p> <pre><code>AddHandler AppDomain.CurrentDomain.UnhandledException, AddressOf UnhandledException </code></pre> <p>In this handler, you can perform any custom logging/recovery needed:</p> <pre><code>Private Sub UnhandledException(ByVal sender As Object, ByVal e As System.UnhandledExceptionEventArgs) Console.WriteLine(vbCrLf &amp; "Unhandled exception:" &amp; vbCrLf &amp; e.ExceptionObject.ToString) End Sub </code></pre> <p>Please note that you're <em>not</em> catching or handling the exception in this case: you're only receiving a notification event. Unless you end the application in your event handler, the exception will be propagated to the higher-level fault handler, which for WinForms apps will usually be in the operating system, leading to the familiar "This application has..." crash dialog.</p> http://stackoverflow.com/questions/686745/best-way-to-clone-iis-settings-to-new-server/689813#689813 1 Answer by mdb for Best way to clone IIS settings to new server? mdb 2009-03-27T13:43:59Z 2009-03-27T13:43:59Z <p>The <a href="http://learn.iis.net/page.aspx/346/web-deployment-tool/" rel="nofollow">Microsoft Web Deployment Tool</a> should allow you to do pretty much what you want.</p> <p>From the linked web site:</p> <blockquote> <p>The Web Deployment Tool is a tool for simplifying the deployment, management and migration of Web applications, sites and even entire servers. Developers can package a Web site, automatically including content, configuration, certificates and databases. These packages can be directly deployed to a server or packaged and shared with others. IT Professionals can enable developers to deploy these packages to a server and delegate access to non-admins. IT Professionals can also use the tool in their infrastructure to synchronize servers easily on both IIS 6.0 and IIS 7.0, or even to accomplish a migration from IIS 6.0 to IIS 7.0.</p> </blockquote> <p>When it comes to metabase edits, it allows you to easily get a list of all settings your site is dependent on, and sync these to the target server (complete with a handy 'what if' mode).</p> http://stackoverflow.com/questions/689746/altering-a-column-null-to-not-null/689766#689766 8 Answer by mdb for Altering a column: null to not null mdb 2009-03-27T13:30:09Z 2009-03-27T13:30:09Z <p>First, make all current NULL values disappear:</p> <p>UPDATE [Table] SET [Column]=0 WHERE [Column] IS NULL</p> <p>Then, update the table definition to disallow NULLs:</p> <p>ALTER TABLE [Table] ALTER COLUMN [Column] INTEGER NOT NULL</p> http://stackoverflow.com/questions/409069/getting-the-size-free-total-of-a-windows-mobile-phone-drive-using-c/409107#409107 1 Answer by mdb for Getting the size (free,total) of a Windows Mobile phone drive using c# mdb 2009-01-03T14:37:03Z 2009-01-03T14:53:22Z <p>Assuming the phone's drive is mounted as a regular volume in Windows (i.e., it has a drive letter in Windows Explorer), you can obtain this information using the <a href="http://msdn.microsoft.com/en-us/library/system.io.driveinfo.aspx" rel="nofollow">System.IO.DriveInfo</a> class.</p> <p>Next problem, of course, would be to determine which drive letter to use, as that will be different on just about every PC the phone is plugged into.</p> <p>A couple of options for that:</p> <ul> <li>Scanning all available drives on the system for a special file that's guaranteed to be present on the phone. <a href="http://msdn.microsoft.com/en-us/library/system.environment.getlogicaldrives.aspx" rel="nofollow">Environment.GetLogicalDrives</a> will give you the list of all available drives on a system; some of these may be removable or otherwise inaccessible, though, which can cause some undesirable side-effects during your scan...</li> <li>A more advanced approach would be to enumerate all available USB devices, and find your phone using its manufacturer/device ID. Although written for a slightly different purpose, <a href="http://www.codeproject.com/KB/system/usbeject.aspx" rel="nofollow">this CodeProject article</a> should point you in the right direction...</li> </ul> <p>And in case you want to run your code directly on the phone, and not on the PC it's attached to (your question doesn't elaborate on that...), <a href="http://stackoverflow.com/questions/140117/available-space-left-on-drive-winapi-windows-ce">this StackOverflow question</a> shows how to obtain free space information on the Compact Framework.</p> <p><em>EDIT</em>, in response to the elaboration that "when i use DriveInfo and give it the drive symbol it gives me the size of the local drive " My C: drive " not the C drive exists on the mobile": the C: drive of the phone will have a different drive letter (for example, F:) on the PC it's mounted on -- therefore the part of my answer that talks about finding the right drive letter. This does, of course, assume that your phone's drive is made available in its entirety on the host PC: depending on the phone model, this may or may not be the case. If not, running some code on your phone is the only viable solution for getting this information...</p> http://stackoverflow.com/questions/347862/how-to-detect-when-laptop-power-cable-has-been-disconnected/347898#347898 9 Answer by mdb for How to detect when laptop power cable has been disconnected? mdb 2008-12-07T18:44:19Z 2008-12-07T18:44:19Z <p>This should be trivial to implement using the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.systeminformation.powerstatus.aspx" rel="nofollow">SystemInformation.PowerStatus</a> property. And even though that lives in Windows.Forms, it should be perfectly usable from a system service.</p> <p>For a solution that also works on the Compact Framework, see <a href="http://msdn.microsoft.com/en-us/library/aa457088.aspx" rel="nofollow">HOWTO: Get the Device Power Status</a></p> http://stackoverflow.com/questions/259253/how-do-i-copy-a-file-or-folder-that-is-locked-under-windows-programmatically/259337#259337 9 Answer by mdb for How do I copy a file or folder that is locked under windows programmatically? mdb 2008-11-03T17:17:09Z 2008-11-20T20:26:53Z <p>You can use the VSS (Volume Shadow Copy Service, not Visual SourceSafe) API for this purpose. While powerful, this isn't exactly an easy-to-use API: the <a href="http://msdn.microsoft.com/en-us/library/aa384589.aspx" rel="nofollow">Overview of Processing a Backup Under VSS</a> should give you an idea what's involved.</p> <p>Even though it's a relatively recent API, .NET support for VSS is pretty much (and inexcusably) nonexistent. You can't call most of the API through Interop, and the Framework file functions won't work with the kernel namespace VSS uses to expose the snapshotted files. As a bonus, there are horrendous 32/64-bit and XP-vs-Vista issues, making deployment exciting as well (the responsible team at Microsoft should be really proud!)</p> <p>Anyway, the <a href="http://www.alphaleonis.com/2008/08/alphavss-bringing-windows-shadow-copy-service-vss-to-net/" rel="nofollow">AlphaVSS</a> project intends to bring full VSS functionality to .NET, and looks extremely promising, even though it's still in pre-beta stage. It might just do the trick for you, though, and it's open source (Managed C++).</p> <p>For a good example of how to do things using Win32, see <a href="http://alt.pluralsight.com/wiki/default.aspx/Craig/HoboCopy.html" rel="nofollow">HoboCopy</a>. The utility is quite useful on its own, and full C++ source is available from the <a href="http://sourceforge.net/projects/wangdera" rel="nofollow">SourceForge project page</a> as well.</p> http://stackoverflow.com/questions/276355/can-i-access-session-state-from-an-httpmodule/276364#276364 7 Answer by mdb for Can I access session state from an HTTPModule? mdb 2008-11-09T19:35:52Z 2008-11-09T19:45:54Z <p><a href="http://msdn.microsoft.com/en-us/library/system.web.httpcontext.session.aspx" rel="nofollow">HttpContext.Current.Session</a> should Just Work, assuming your HTTP Module isn't handling any <a href="http://msdn.microsoft.com/en-us/library/ms178473.aspx" rel="nofollow">pipeline events</a> that occur prior to the session state being initialized...</p> <p>EDIT, after clarification in comments: when handling the <a href="http://msdn.microsoft.com/en-us/library/system.web.httpapplication.beginrequest.aspx" rel="nofollow">BeginRequest event</a>, the Session object will indeed still be null/Nothing, as it hasn't been initialized by the ASP.NET runtime yet. To work around this, move your handling code to an event that occurs after <a href="http://msdn.microsoft.com/en-us/library/system.web.httpapplication.postacquirerequeststate.aspx" rel="nofollow">PostAcquireRequestState</a> -- I like <a href="http://msdn.microsoft.com/en-us/library/system.web.httpapplication.prerequesthandlerexecute.aspx" rel="nofollow">PreRequestHandlerExecute</a> for that myself, as all low-level work is pretty much done at this stage, but you still pre-empt any normal processing.</p> http://stackoverflow.com/questions/275824/how-to-find-out-which-account-my-asp-net-code-is-running-under/275830#275830 4 Answer by mdb for How to find out which account my ASP.NET code is running under? mdb 2008-11-09T11:16:56Z 2008-11-09T11:16:56Z <p>To find out which NT account your app is running under at any given time, do something like (in VB.NET):</p> <pre><code> Dim User = System.Security.Principal.WindowsIdentity.GetCurrent.User Dim UserName = User.Translate(GetType(System.Security.Principal.NTAccount)).Value </code></pre> <p>When using ASP.NET, this account will match the identity of the application pool, which you configure using IIS Manager. Note that the anonymous IIS user isn't much involved with ASP.NET requests.</p> http://stackoverflow.com/questions/265425/what-is-the-best-way-to-parse-an-xml-boolean-attribute-in-net/265440#265440 2 Answer by mdb for What is the best way to parse an XML boolean attribute (in .NET)? mdb 2008-11-05T15:16:16Z 2008-11-08T08:11:09Z <p>Using <code>CBool</code> instead of <code>Boolean.Parse</code> should do the trick: although you'll have to embed it in a <code>try/catch</code> block (which wouldn't be required when using <code>Boolean.TryParse</code>), it will successfully convert most 'sensible' boolean values, including true/false and 0/1.</p> <p>Edit: as pointed out in a comment, this answer is kinda useless for C# programmers, as <code>CBool</code> is a VB-ism. It maps to <code>Microsoft.VisualBasic.CompilerServices.Conversions::ToBoolean</code>, which is not suitable for general consumption. Which makes the XMLConvert class pointed out in the accepted answer an even better alternative.</p> http://stackoverflow.com/questions/267838/how-can-a-windows-service-execute-a-gui-application/267866#267866 8 Answer by mdb for How can a Windows service execute a GUI application? mdb 2008-11-06T07:36:45Z 2008-11-06T11:42:49Z <p>Roger Lipscombe's answer, to use <a href="http://msdn.microsoft.com/en-us/library/aa383833.aspx" rel="nofollow">WTSEnumerateSessions</a> to find the right desktop, then <a href="http://msdn.microsoft.com/en-us/library/ms682429.aspx" rel="nofollow">CreateProcessAsUser</a> to start the application on that desktop (you pass it the handle of the desktop as part of the <a href="http://msdn.microsoft.com/en-us/library/ms686331.aspx" rel="nofollow">STARTUPINFO</a> structure) is correct.</p> <p>However, I would <i>strongly</i> recommend against doing this. In some environments, such as Terminal Server hosts with many active users, determining which desktop is the 'active' one isn't easy, and may not even be possible.</p> <p>But most importantly, if an application will suddenly appear on a user's desktop, this may very well occur at a bad time (either because the user simply isn't expecting it, or because you're trying to launch the app when the session isn't quite initialized yet, in the process of shutting down, or whatever).</p> <p>A more conventional approach would be to put a shortcut to a small client app for your service in the global startup group. This app will then launch along with every user session, and can be used start other apps (if so desired) without any juggling of user credentials, sessions and/or desktops.</p> <p>Also, this shortcut can be moved/disabled by administrators as desired, which will make deployment of your application much easier, since it doesn't deviate from the standards used by other Windows apps...</p> http://stackoverflow.com/questions/265295/net-decompilation-how-easy-is-it/265336#265336 0 Answer by mdb for .NET decompilation, how easy is it? mdb 2008-11-05T14:46:35Z 2008-11-05T14:46:35Z <p>.NET compilation in general is pretty easy: to get a feel for this yourself, just grab a copy of <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">.NET Reflector</a> and give it a try.</p> <p>In most cases, there will be no need to recompile the code in order to remove a simple license check: simply patching the <a href="http://channel8.msdn.com/Posts/MSIL-the-language-of-the-CLR-Part-1/" rel="nofollow">MSIL</a> will do the trick.</p> <p>Protecting yourself against this scenario yields rapidly diminishing returns: there will <i>always</i> be someone clever enough to bypass whatever additional checks you add to your code. For example, you could add a digital signature to your code, and refuse to run of the signature doesn't match (indicating the code has been tampered with, for example to remove the license check).</p> <p>The game then becomes to remove the signature check (in addition to the license key check). So you add another check, which can then be bypassed, et cetera, ad infinitum.</p> <p>There's a whole industry of <a href="http://www.google.com/search?q=.net+obfuscator" rel="nofollow">code obfuscatation</a> and <a href="http://www.google.com/search?q=copy+protection+.net" rel="nofollow">copy protection</a> tools to help you defend your software against issues like this. It's up to you to decide if the additional effort on your side, and the annoyance you'll cause your legitimate customers, is worth buying into these solutions...</p> http://stackoverflow.com/questions/258327/system-drawing-image-for-images-in-business-objects/258391#258391 2 Answer by mdb for System.Drawing.Image for Images in Business Objects? mdb 2008-11-03T11:34:24Z 2008-11-03T11:34:24Z <p>From your question, it seems apparent that your business logic layer needs to process images in a pretty low-level way (otherwise, I guess you'd just be storing image URLs or something...). This places the concept of an image/bitmap squarely in the business logic territory, so it's perfectly fine for it to rely on the System.Drawing namespace for this purpose.</p> <p>If you feel like images have no place in a class library, <a href="http://referencesource.microsoft.com/netframework.aspx" rel="nofollow">one look System.Drawing itself</a> should convince you otherwise: it's a prime example of a class library (and a very decently designed one at that) that pretty much does nothing else than deal with images. </p> <p>It really doesn't have anything to do with UIs (Windows.Forms and friends deal with those). Also, System.Drawing is present on any system with the .NET Framework installed, so there are no dependency issues.</p> <p>If you're concerned about cross-platform compatibility, creating a wrapper class for images could alleviate these concerns. However, since the bitmap structures themselves are most likely already platform-specific (unless you take care to only use PNGs on your external interfaces, for example), this might be a bit over the top, since you're adding complexity without gain...</p> http://stackoverflow.com/questions/255644/c-interface-implementation-relationship-is-just-can-do-relationship/255658#255658 0 Answer by mdb for C# Interface Implementation relationship is just "Can-Do" Relationship? mdb 2008-11-01T08:37:06Z 2008-11-01T08:37:06Z <p>The designers of the .NET framework use interfaces to designate a "has a" (or "can do") relationship, whereas "is a" is implemented using inheritance.</p> <p>The rationale for this can be found in the <a href="http://msdn.microsoft.com/en-us/library/ms229013.aspx" rel="nofollow">Choosing Between Classes and Interfaces</a> section of the .NET Framework Developer's Guide:</p> <blockquote> <p>An interface defines the signatures for a set of members that implementers must provide. Interfaces cannot provide implementation details for the members.</p> </blockquote> <p>So, since your "Programmer" and "Engineer" example classes would most likely come with their own specific functionality, they would be more suitably implementated using inheritance.</p> http://stackoverflow.com/questions/252815/vb-control-crashes-my-app/252874#252874 1 Answer by mdb for VB control crashes my app mdb 2008-10-31T08:27:10Z 2008-10-31T08:27:10Z <p>Since the tab control appears to be managed code as well, your 'crash' is most likely an unhandled .NET exception.</p> <p>Looking at the error details (by expanding the error dialog using the button provided for that purpose...) should give you the exception message, which should give you an idea of what's going on. If it's a missing dependency DLL, the name should be included in the message.</p> <p>To get the full exception, including the stack trace, one of the following should work:</p> <ul> <li><p>Least effort: in the first line of your own managed code, add <a href="http://blogs.microsoft.co.il/blogs/sasha/archive/2007/12/30/clr-and-unhandled-exception-filters.aspx" rel="nofollow">an unhandled exception handler</a> which shows the full exception in a message box or logs it to a file prior to rethrowing it</p></li> <li><p>Medium effort: attach a debugger to the process on the client machine. If it's on your local network, <a href="http://support.microsoft.com/kb/910448" rel="nofollow">setting up remote debugging</a> should be trivial, and should also allow you to debug exceptions that occur prior to your first line of code executing (which may very well be the case if the error is binding-related...)</p></li> <li><p>Most effort: obtain the crash dump file from the client machine, and look at the managed exception using Windbg and the <a href="http://msdn.microsoft.com/en-us/library/bb190764.aspx" rel="nofollow">SOS debugging extensions</a>. Getting productive with the tools involved will take some time, but on the plus side <i>will</i> teach you valuable debug ninja skills that will allow you to tackle pretty much any 'mysterious crash'...</p></li> </ul> <p>BTW, all standard 'VB dependencies' are part of the default .NET Framework install, so that's not your problem -- only the exact exception (and possibly stack trace) will tell you what's going on.</p> http://stackoverflow.com/questions/231195/what-is-the-definitive-book-on-assembly-language-and-computer-architecture/231256#231256 3 Answer by mdb for What is the definitive book on assembly language and Computer Architecture mdb 2008-10-23T20:03:02Z 2008-10-23T20:03:02Z <p>When it comes to general processor architecture, it's hard to beat <a href="http://rads.stackoverflow.com/amzn/click/0123744938" rel="nofollow">Computer Organization and Design</a> by Patterson and Hennessy. </p> <p><img src="http://ecx.images-amazon.com/images/I/51xqBszpRDL._SL500_AA240_.jpg"/></p> <p>Since they're pretty much the inventors of the MIPS architecture, their book tends to focus on that environment. If Intel x86 assembly is more to your liking, the <a href="http://rads.stackoverflow.com/amzn/click/0673386023" rel="nofollow">Zen of Assembly Language</a> series by Michael Abrash is as good as it gets.</p> <p><img src="http://g-ecx.images-amazon.com/images/G/01/ciu/63/87/7adba2c008a054154f4a4010._AA240_.L.jpg"/></p> http://stackoverflow.com/questions/227293/what-are-the-steps-to-repair-the-net-framework-2-0-3-5-on-windows-xp/227309#227309 2 Answer by mdb for What are the steps to repair the .Net framework (2.0 / 3.5) on Windows XP? mdb 2008-10-22T19:57:35Z 2008-10-22T19:57:35Z <p>See <a href="http://support.microsoft.com/kb/306160" rel="nofollow">How to repair an existing installation of the .NET Framework</a> -- the procedure described there works fine with a downloaded copy of dotnetfx.exe for the affected version.</p> http://stackoverflow.com/questions/1882014/recommended-way-to-work-with-audio-in-net-applications/1894018#1894018 Comment by mdb on Recommended way to work with audio in .NET applications? mdb 2009-12-12T20:04:21Z 2009-12-12T20:04:21Z Thanks -- a tad expensive for commercial use, though. Another one I found in the meantime is <a href="http://www.ambiera.com/irrklang/irrklang_pro.html" rel="nofollow">ambiera.com/irrklang/irrklang_pro.html</a>, which also suffers from strange licensing http://stackoverflow.com/questions/1881050/creating-a-huge-dummy-file-in-a-matter-of-seconds-in-c/1881076#1881076 Comment by mdb on Creating a Huge Dummy File in a Matter of Seconds in C# mdb 2009-12-12T20:01:30Z 2009-12-12T20:01:30Z @RickNZ: while this will indeed be the case for common file systems, it isn't an explicit part of the API contract, and won't be the case for some third-party network redirectors. http://stackoverflow.com/questions/1882014/recommended-way-to-work-with-audio-in-net-applications/1882127#1882127 Comment by mdb on Recommended way to work with audio in .NET applications? mdb 2009-12-10T16:24:32Z 2009-12-10T16:24:32Z Thanks, another promising solution that my weak Google-fu somehow overlooked http://stackoverflow.com/questions/1882014/recommended-way-to-work-with-audio-in-net-applications/1882162#1882162 Comment by mdb on Recommended way to work with audio in .NET applications? mdb 2009-12-10T16:23:51Z 2009-12-10T16:23:51Z Its license is somewhat suboptimal for me. Still, bookmarked... http://stackoverflow.com/questions/1882014/recommended-way-to-work-with-audio-in-net-applications/1882091#1882091 Comment by mdb on Recommended way to work with audio in .NET applications? mdb 2009-12-10T16:15:24Z 2009-12-10T16:15:24Z +1, looks very promising! Giving it a try right now... http://stackoverflow.com/questions/1881122/c-how-to-communicate-with-sftp-server/1881148#1881148 Comment by mdb on C#: How to communicate with SFTP server mdb 2009-12-10T13:58:44Z 2009-12-10T13:58:44Z Nope, SFTP (the SSH file transfer subsystem) is very different from FTP/S (FTP over SSL). http://stackoverflow.com/questions/1851264/how-can-i-send-bulk-emails-to-members-via-asp-net Comment by mdb on How can I send bulk emails to members via ASP.NET? mdb 2009-12-05T05:53:46Z 2009-12-05T05:53:46Z In order to improve your chances of getting an answer to this question, please edit it to include your current approach and/or (minimal) code. Also, specifying WHICH exception you get, as well as which language you use and such would be helpful... As it is, this question will probably be closed as &quot;not a real question&quot; http://stackoverflow.com/questions/1815072/how-to-remove-a-row-item-from-a-vb6-listview-using-a-button Comment by mdb on How to remove a row (item) from a VB6 ListView using a button? mdb 2009-11-29T10:13:20Z 2009-11-29T10:13:20Z If my answer was useful to you, please indicate so by voting it up. Also, if your problem has been solved by the answer, and you don't expect or need any other answers, please accept the answer as well. You'll also want to do this for the other 2 questions you asked previously: it's the polite thing to do, and will increase the chance future questions will receive useful answers... http://stackoverflow.com/questions/1676322/retrieving-emails-using-pop3 Comment by mdb on Retrieving Emails Using POP3? mdb 2009-11-04T20:31:35Z 2009-11-04T20:31:35Z See duplicate question: <a href="http://stackoverflow.com/questions/44383/reading-email-using-pop3-in-c" rel="nofollow" title="reading email using pop3 in c">stackoverflow.com/questions/44383/&hellip;</a> http://stackoverflow.com/questions/1613092/help-grid-on-textbox-in-vb-net Comment by mdb on Help grid on textbox in vb.net mdb 2009-10-23T12:43:08Z 2009-10-23T12:43:08Z Please elaborate on what you need. A 'helplist' is most likely an autocomplete list, returning database matches start with the text that has been typed, right? Also: which platform? WinForms? ASP.NET? WFP? http://stackoverflow.com/questions/183093/vb6-tag-property-equivalent-in-asp-net/183262#183262 Comment by mdb on Vb6 "Tag" property equivalent in ASP.Net? mdb 2009-07-30T20:07:12Z 2009-07-30T20:07:12Z tbone: no, unfortunately, extension methods are only available at runtime. I guess if you really wanted to, you could achieve this using a VS.NET plugin or somesuch, but that's more trouble than it's worth http://stackoverflow.com/questions/277228/how-to-determine-if-asp-net-page-is-in-cache-or-not Comment by mdb on How to determine if ASP.NET page is in cache or not? mdb 2008-11-10T06:48:57Z 2008-11-10T06:48:57Z Some more details would be helpful: e.g., do you want to do this on the client (browser) or server? And why, exactly, do you need to know (i.e. what problem are you trying to solve?) http://stackoverflow.com/questions/276355/can-i-access-session-state-from-an-httpmodule/276364#276364 Comment by mdb on Can I access session state from an HTTPModule? mdb 2008-11-09T19:50:48Z 2008-11-09T19:50:48Z PostAcquireRequeststate isn't an 'application level event': if the HTTP request is handled by a web service handler, for example, you'll still see it in your HTTP module, but not in Global.asax... http://stackoverflow.com/questions/275824/how-to-find-out-which-account-my-asp-net-code-is-running-under/275843#275843 Comment by mdb on How to find out which account my ASP.NET code is running under? mdb 2008-11-09T12:32:04Z 2008-11-09T12:32:04Z Do keep in mind, though, that Environment.Username will simply return the USERNAME environment variable, which is set on process creation and not updated in case of impersonation and such. http://stackoverflow.com/questions/258287/how-to-keep-track-of-application-version-when-compiling-using-adobe-flex-3 Comment by mdb on How to keep track of application version when compiling using Adobe Flex 3? mdb 2008-11-03T10:55:29Z 2008-11-03T10:55:29Z Could you please edit your question to clarify what you mean? Do you want to embed the version that is in your Flex source file in the SWF? How do you assign that version number -- or is your question about that in the first place?