User hearn - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T10:20:45Z http://stackoverflow.com/feeds/user/30096 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1742223/detect-incoming-phone-calls/1742350#1742350 0 Answer by hearn for Detect incoming phone calls hearn 2009-11-16T14:02:40Z 2009-11-16T14:02:40Z <p>I found this article on handling incoming calls; terminating resuming and persisting state,.</p> <p>It might help you..</p> <p><a href="http://www.tomwhitson.co.uk/blog/2009/04/handling-interuptions-to-your-app/" rel="nofollow">http://www.tomwhitson.co.uk/blog/2009/04/handling-interuptions-to-your-app/</a></p> <p>(void)applicationWillResignActive:(UIApplication *)application{ //our app is going to loose focus since thier is an incoming call [self pauseGame]; }</p> <p>(void)applicationDidBecomeActive:(UIApplication *)application{ //the user declined the call and is returning to our app [self resumeGame]; }</p> <p>(void)applicationWillTerminate:(UIApplication*)application{ //the user answered the call (or quit the app) so save the //game as we are shutting down [self saveGameState]; }</p> http://stackoverflow.com/questions/359381/how-to-code-html-mailings/359517#359517 4 Answer by hearn for How to code html mailings? hearn 2008-12-11T14:27:13Z 2008-12-11T14:27:13Z <p>Have a look at <a href="http://www.email-standards.org/" rel="nofollow">email-standards.org</a>, they have an <a href="http://www.email-standards.org/acid-test/" rel="nofollow">ACID test</a> which they run on <a href="http://www.email-standards.org/clients/" rel="nofollow">most popular clients</a>, and you can see a list of the different css selectors and html tags they tested, and <a href="http://www.email-standards.org/clients/microsoft-outlook-2007/screenshot/" rel="nofollow">screenshots</a> of the actual <a href="http://www.email-standards.org/clients/microsoft-outlook-2007/" rel="nofollow">results</a>, with what works and what doesnt.</p> <p>Hope this helps!</p> http://stackoverflow.com/questions/291661/retreiving-alternateviews-of-email/296535#296535 0 Answer by hearn for Retreiving AlternateView's of email hearn 2008-11-17T19:09:42Z 2008-11-17T19:09:42Z <p>Its not immediately possible to parse an email with the classes available in the System.Net.Mail namespace; you either need to create your own MIME parser, or use a third party library instead.</p> <p>This great Codeproject article by Peter Huber SG, entitled <a href="http://www.codeproject.com/KB/IP/Pop3MimeClient.aspx" rel="nofollow">'POP3 Email Client with full MIME Support (.NET 2.0)'</a> will give you an understanding of how MIME processing can be implemented, and the related RFC specification articles. </p> <p>You can use the Codeproject article as a start for writing your own parser, or appraise a library like <a href="http://anmar.eu.org/projects/sharpmimetools/" rel="nofollow">SharpMimeTools</a>, which is an open source library for parsing and decoding MIME emails.</p> <p><a href="http://anmar.eu.org/projects/sharpmimetools/" rel="nofollow">http://anmar.eu.org/projects/sharpmimetools/</a></p> <p>Hope this helps!</p> http://stackoverflow.com/questions/291191/what-do-i-need-to-run-asp-net-web-applications-on-my-personal-machine-for-testing/291233#291233 2 Answer by hearn for What do I need to run ASP.NET web applications on my personal machine for testing purposes? hearn 2008-11-14T20:10:19Z 2008-11-14T20:10:19Z <p>You already have everything you need to run ASP.NET applications; Visual Studio 2008 has an inbuilt web server '<a href="http://www.asp.net/Downloads/archived/cassini/" rel="nofollow">Casinni</a>' that starts up and hosts your asp.net site when you compile and run from the development environment (Press F5)</p> <p>If you have the professional version of XP you can install IIS 5 via Control Panel -> Add/Remove Windows Components and use that to host your website instead.</p> <p>To configure vs.net to use IIS instead, In Solution Explorer, right-click the name of the Web site for which you want to specify a Web server, and then click Property Pages.</p> <p>In the Property Pages dialog box, click the Start Options tab. Under Server, click use custom server. In the base URL box, type the URL that VS.NET should start when running the current Web site.</p> http://stackoverflow.com/questions/289594/is-anyone-using-a-2008-macbook-pro-with-vista/290808#290808 2 Answer by hearn for Is anyone using a 2008 MacBook Pro with Vista? hearn 2008-11-14T17:37:07Z 2008-11-14T17:37:07Z <p>I use a previous gen Macbook Pro everyday as my main windows dev machine, but I run and recommend x64 XP Pro rather than Vista for the main reason that its not such a resource hog!</p> <p>Its a 2.4Ghz Intel Core 2 Duo with 4GB RAM (OSX 10.5.5) with x64 XP Pro running on VMWare Fusion 2.0.</p> <p>1.5GB RAM is allocated to XP, and 2.5GB to OSX. I run vs.net 2008, sql 2005, office 07 and expression tools, and use twin monitors. OSX is used for everything but development; mail, RDP, VPN connection into the office, itunes/iphone syncing. XP is purely used for development. I also use OSX for making music, using Ableton Live as it tends to be a lot more stable than on XP.</p> <p>The trackpad is fine, and the keyboard shortcuts work great too., although Ive normally got an external keyboard &amp; mouse plugged in.</p> <p>Version 2.0 of VMWare Fusion is much more stable than 1.3, as I was often experiencing crashes while debugging in visual studio, normally related to memory corruption.</p> <p>IMO, Get a MBP with 4GB runing VMWare Fusion with x64 XP Pro, and you'll enjoy the one of the fastest, most reliable windows development environments ever!</p> http://stackoverflow.com/questions/289622/adding-desktop-shortcuts-to-my-computer-on-windows-2008-server/289893#289893 1 Answer by hearn for Adding desktop shortcuts to "My Computer" on Windows 2008 Server hearn 2008-11-14T12:03:47Z 2008-11-14T12:03:47Z <p>Right click on the Computer menu item on the start menu, and select 'Show on Desktop' from the context menu that pops up.</p> http://stackoverflow.com/questions/286791/dns-of-the-server-where-asp-net-application-is-run/286907#286907 3 Answer by hearn for DNS of the server where ASP.NET application is run hearn 2008-11-13T13:32:15Z 2008-11-13T13:41:15Z <p>This will get you the DNS IP for the server that is hosting the web site</p> <pre><code>void GetDNSServerAddress() { NetworkInterface[] nics = NetworkInterface.GetAllNetworkInterfaces(); foreach (NetworkInterface ni in nics) { if (ni.OperationalStatus == OperationalStatus.Up) { IPAddressCollection ips = ni.GetIPProperties().DnsAddresses; foreach (System.Net.IPAddress ip in ips) { Console.Write(ip.ToString()); } } } } </code></pre> <p>However, while writing this ive just seen your edited post, so i think this is what you are after is simply:</p> <pre><code>string host = Request.Url.Scheme + "://" + Request.Url.Host; </code></pre> <p>Hope this helps!</p> http://stackoverflow.com/questions/262341/get-data-from-an-uploaded-excel-file-without-saving-to-file-system/262646#262646 1 Answer by hearn for Get Data From An Uploaded Excel File Without Saving to File System hearn 2008-11-04T17:39:54Z 2008-11-04T17:39:54Z <p>This is something I've been playing with recently.</p> <p>Check this post: <a href="http://stackoverflow.com/questions/156500/write-an-excel-workbook-to-a-memory-stream-net">Write an excel workbook to a memory stream .NET</a></p> <p>It points to a great library by Carlos Aguilar Mares, which lets you work with Excel workbooks as XML.</p> <p><a href="http://www.carlosag.net/Tools/ExcelXmlWriter/" rel="nofollow">ExcelXMLWriter</a></p> <p>You dont need Excel installed on the server (which is kinda breaking the MS licensing anyway as you are accessing this over the web). </p> <p>You can load the Excel workbook as a stream using <code>Workbook.Load(stream)</code></p> http://stackoverflow.com/questions/259036/why-do-i-get-unable-to-start-debugging-on-web-server-when-running-asp-net/261949#261949 1 Answer by hearn for Why do I get "Unable to start debugging on web server" when running asp.net? hearn 2008-11-04T13:50:05Z 2008-11-04T13:50:05Z <p><a href="http://msdn.microsoft.com/en-us/library/dwesw3ee.aspx" rel="nofollow">Error: Unable to Start Debugging on the Web Server</a></p> <p>Check the points in the MSDN article above. IME, its normally one of these things:</p> <ol> <li><p>Has the application directory been created as an application in IIS? On the Directory tab, under Application Settings, next to the application name you will see the create button. Click this!</p></li> <li><p>On the ASP.NET tab in IIS, has the correct version of the framework been selected?</p></li> <li><p>Re-register ASP.NET: From a command prompt window, run the following command: systemroot\Microsoft.NET\Framework\ versionNumber \aspnet_regiis -i</p></li> </ol> http://stackoverflow.com/questions/247486/how-to-specify-the-namespace-when-referencing-a-table-in-a-dataset/259171#259171 0 Answer by hearn for How to specify the namespace when referencing a table in a dataset hearn 2008-11-03T16:28:43Z 2008-11-03T16:28:43Z <p>From MSDN: <a href="http://msdn.microsoft.com/en-us/library/system.data.dataset.namespace(VS.80).aspx" rel="nofollow">DataSet.Namespace</a></p> <blockquote> <p>The Namespace property is used when reading and writing an XML document into the DataSet using the ReadXml, WriteXml, ReadXmlSchema, or WriteXmlSchema methods.</p> <p>The namespace of an XML document is used to scope XML attributes and elements when read into a DataSet. For example, if a DataSet contains a schema that was read from a document with the namespace "myCompany," and an attempt is made to read data only from a document with a different namespace, any data that does not correspond to the existing schema is ignored.</p> <p>The following example sets the Prefix before calling the ReadXml method.</p> </blockquote> <pre><code>private void ReadData(DataSet thisDataSet) { thisDataSet.Namespace = "CorporationA"; thisDataSet.Prefix = "DivisionA"; // Read schema and data. string fileName = "CorporationA_Schema.xml"; thisDataSet.ReadXmlSchema(fileName); fileName = "DivisionA_Report.xml"; thisDataSet.ReadXml(fileName); } </code></pre> <p>I cant see from the example you gave, but unless you set your prefix before you load, you wont be able to read data that doesn't correspond to the existing schema.</p> http://stackoverflow.com/questions/247833/excel-2007-hangs-when-closing-via-net/248040#248040 5 Answer by hearn for Excel 2007 Hangs When Closing via .NET hearn 2008-10-29T19:11:05Z 2008-10-29T19:11:05Z <p>The answer to your question has been covered here i think: <a href="http://stackoverflow.com/questions/158706/how-to-properly-clean-up-excel-interop-objects-in-c">How to properly clean up excel interop objects in c</a></p> <p>i cant see from your code sample, but basically, always assign your excel objects to local variables, never going 'two dots down', like this:</p> <pre><code>//FAIL Workbook wkBook = xlApp.Workbooks.Open(@"C:\mybook.xls"); </code></pre> <p>instead ref each obj individually:</p> <pre><code>//WIN Worksheets sheets = xlApp.Worksheets; Worksheet sheet = sheets.Open(@"C:\mybook.xls"); ... Marshal.ReleaseComObject(sheets); Marshal.ReleaseComObject(sheet); </code></pre> <p>.NET creates a wrapper for the COM object that is invisible to you and is not released until the GC weaves its magic.</p> <p>Until I discovered this, I was running the hacky code below in an ASP.NET application each time i created a new workbook that that checks the age of the excel.exe process and kills any that are over a minute old:</p> <pre><code>//force kill any excel processes over one minute old. try { Process[] procs = Process.GetProcessesByName("EXCEL"); foreach (Process p in procs) { if (p.StartTime.AddMinutes(1) &lt; DateTime.Now) { p.Kill(); } } } catch (Exception) {} </code></pre> http://stackoverflow.com/questions/239543/subversion-server-on-64-bit-windows/239727#239727 1 Answer by hearn for Subversion server on 64-bit Windows? hearn 2008-10-27T12:34:03Z 2008-10-27T12:34:03Z <p>Ive been using VisualSVN Server on W2K3 x64 on one of our MS SQL 2005 boxes with no problems at all for over a month now. I followed the <a href="http://www.visualsvn.com/server/doc/server-config/" rel="nofollow">installation guide</a> and have had no issue at all with either the server code or the integrated Apache server. </p> http://stackoverflow.com/questions/289594/is-anyone-using-a-2008-macbook-pro-with-vista/290808#290808 Comment by hearn on Is anyone using a 2008 MacBook Pro with Vista? hearn 2008-11-24T18:59:33Z 2008-11-24T18:59:33Z I'm running x64 XP Pro in VMWare Fusion 2.0 (soon to try the 2.1 update). Ive not run vista on the vm, only on various desktops as ive found the bloat too much to contemplate. until something better (Windows7??) comes along, its xp for dev and osx for everything else.