User Paul - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T01:27:11Z http://stackoverflow.com/feeds/user/42446 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1707271/how-to-upload-an-image-when-user-selects-a-file-in-fileupload-control-like-in-gma/1715032#1715032 0 Answer by Paul for How to upload an image when user selects a file in FileUpload control like in gmail? Paul 2009-11-11T12:57:07Z 2009-11-11T12:57:07Z <p>Take a wee peek at this. Jquery + flash solution.</p> <p><a href="http://www.uploadify.com/demo/" rel="nofollow">http://www.uploadify.com/demo/</a></p> http://stackoverflow.com/questions/1600718/unclosed-connection-connection-pool-debugging-sql-server 1 Unclosed connection - Connection Pool debugging SQL Server Paul 2009-10-21T13:06:56Z 2009-10-21T13:58:52Z <p>We have a suspect application leaving a connection open. Just wondering on the debugging tools for this, as to whether anyone has any good tools for isolating this, commercial or otherwise. </p> <p>I've Googled but only seem to bring up articles that describe the problem - not the steps for a solution. </p> <p><a href="http://blogs.msdn.com/snehadeep/archive/2009/04/28/connection-leak-its-symptoms-and-troubleshooting.aspx" rel="nofollow">This</a> is the best article I've seen so far. - Others welcome. </p> <p>Anyone have any products that isolate the problematic code? Profilers which perform this sort of thing, or any other advice to add?</p> http://stackoverflow.com/questions/541102/remove-a-chunk-of-a-string 0 remove a chunk of a string Paul 2009-02-12T12:51:02Z 2009-10-20T20:31:46Z <p>Anyone know a better way to do this?</p> <pre><code>Dim Result1,Result2,FinalResult As String Result1 = Left(sXMLResponse, sXMLResponse.IndexOf("&lt;start&gt;")) Result2 = Mid(sXMLResponse, sXMLResponse.IndexOf("&lt;end&gt;")) FinalResult =Result1 &amp; Result2 </code></pre> <p>Surely there is a built in String.Remove(StringOne, StringTwo) Method or something more graceful?</p> http://stackoverflow.com/questions/1353567/cache-dependancy-off-causing-exception 0 Cache Dependancy Off causing exception.. Paul 2009-08-30T10:20:39Z 2009-08-31T11:51:04Z <p>Im getting an exception in my data tier when I try to disable cache dependancy in SQL server..</p> <pre><code>System.Exception: TblSettings::Insert::Error occured. ---&gt; System.Data.SqlClient.SqlException: Could not find stored procedure 'dbo.AspNet_SqlCacheUpdateChangeIdStoredProcedure'. The statement has been terminated. </code></pre> <p>Enabling cache dependancy, everything is fine..Disabling, the above exception gets thrown. How do I turn this off conclusively? I've checked the code and can't seem to find where it is referenced, apart from the web config, of which I've removed the cache block..From what I can see this seems to be caused via SQL server itself..Anyone any ideas of things to check?</p> <p>.....The following is console output I'm trying to turn on and off </p> <pre><code>C:\Windows\Microsoft.NET\Framework\v2.0.50727&gt; aspnet_regsql -S JDAWG\SQLEXPRESS -U sa -P password -d DB -dd Disabling the database for SQL cache dependency. . Finished. C:\Windows\Microsoft.NET\Framework\v2.0.50727&gt; aspnet_regsql -S JDAWG\SQLEXPRESS -U sa -P password -d DB -ed Enabling the database for SQL cache dependency. . Finished. </code></pre> http://stackoverflow.com/questions/1353567/cache-dependancy-off-causing-exception/1353587#1353587 0 Answer by Paul for Cache Dependancy Off causing exception.. Paul 2009-08-30T10:33:40Z 2009-08-30T10:33:40Z <p>Never mind. Found it, There's a trigger under each table that appears to be left over. Needs deleted to prevent the referencing.</p> http://stackoverflow.com/questions/1205341/tool-to-replace-include-with-its-own-contents 0 Tool to replace include with its own contents? Paul 2009-07-30T08:57:52Z 2009-07-30T17:52:33Z <p>I'm faced with the task of find and replacing multiple include files with the include file's content. </p> <p>Just wondering if I'd be quicker copy / pasting than writing a bit of code to do so, or if there's a tool out there that could do this for me?</p> <p>Pretty sure its a common need. I'm on Windoze btw. Any suggestions welcome.</p> <p>Just to clarify a bit..</p> <pre><code>&lt;body&gt; &lt;!--#include file="content1.asp" --&gt; &lt;/body&gt; </code></pre> <p>What I want to achieve is </p> <pre><code>&lt;body&gt; &lt;the html contents of content1.asp&gt; &lt;/body&gt; </code></pre> <p>This is a straightforward dig into content1.asp, put in a variable, and replace <code>&lt;!--#include file="content1.asp" --&gt;</code> with the variable.</p> http://stackoverflow.com/questions/1205457/how-to-design-a-css-for-a-centered-floating-confirm-dialog/1205473#1205473 0 Answer by Paul for How to design a CSS for a centered floating confirm dialog? Paul 2009-07-30T09:26:35Z 2009-07-30T09:26:35Z <p>Realise this doesn't answer the question - but have you looked at Jquery UI's dialogs? Might be useful to you.</p> <p><a href="http://jqueryui.com/demos/dialog/" rel="nofollow">http://jqueryui.com/demos/dialog/</a></p> http://stackoverflow.com/questions/1188283/generate-public-id-text-like-stackoverflow/1188298#1188298 0 Answer by Paul for Generate Public "ID Text" (like Stackoverflow) Paul 2009-07-27T13:57:54Z 2009-07-27T13:57:54Z <p>Think you'll have to write your own method...</p> <p>Safelist of characters...</p> <p>A to Z</p> <p>For Each c As char In SafeList If safe ... etc. Next </p> http://stackoverflow.com/questions/1164342/seo-and-queries/1164380#1164380 1 Answer by Paul for SEO and queries Paul 2009-07-22T10:34:15Z 2009-07-22T10:34:15Z <p>Store the keywords used to search inside the existing engine - maybe even with a weight of importance in your Database.</p> <p>Then simply write a Sitemap.XML with those written into your Querystrings. </p> <p>See here for example - this is something I put together</p> <p><a href="http://www.querybox.com/sitemap.aspx" rel="nofollow">http://www.querybox.com/sitemap.aspx</a></p> <p><a href="http://www.querybox.com/" rel="nofollow">http://www.querybox.com/</a></p> <p><a href="http://www.google.co.uk/search?hl=en&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-GB%3Aofficial&amp;hs=PCu&amp;q=site%3Awww.querybox.com&amp;btnG=Search&amp;meta=" rel="nofollow">http://www.google.co.uk/search?hl=en&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-GB%3Aofficial&amp;hs=PCu&amp;q=site%3Awww.querybox.com&amp;btnG=Search&amp;meta=</a></p> http://stackoverflow.com/questions/1160105/asp-net-mvc-disable-browser-cache/1160151#1160151 1 Answer by Paul for asp.net mvc disable browser cache Paul 2009-07-21T16:00:59Z 2009-07-21T16:00:59Z <pre><code>HttpContext.Current.Response.Cache.SetExpires(DateTime.UtcNow.AddDays(-1)) HttpContext.Current.Response.Cache.SetValidUntilExpires(false) HttpContext.Current.Response.Cache.SetRevalidation(HttpCacheRevalidation.AllCaches) HttpContext.Current.Response.Cache.SetCacheability(HttpCacheability.NoCache) HttpContext.Current.Response.Cache.SetNoStore() </code></pre> <p>All requests get routed through default.aspx first - so assuming you can just pop in code behind there.</p> http://stackoverflow.com/questions/638227/net-currency-exponent-iso4217 0 .NET Currency exponent ISO_4217 Paul 2009-03-12T11:30:35Z 2009-07-16T06:15:34Z <p>Hi guys,</p> <p>I'm developing something for international use. Wondering if anyone can shed any light on whether the CultureInfo class has support for finding currency exponents for particular countries, or whether I need to feed this data in at the database level. </p> <p>I can't see any property that represents this at the minute, so if anyone knows definitively if it exists, before I look for it / buy it from ISO.</p> <p>Currency Exponent is the minor units of the currency.</p> <p><a href="http://en.wikipedia.org/wiki/ISO_4217" rel="nofollow">http://en.wikipedia.org/wiki/ISO_4217</a> - e.g. UK is "2"</p> http://stackoverflow.com/questions/1133276/how-to-access-parent-document-elements-using-jquery-in-firefox/1133322#1133322 0 Answer by Paul for How to access parent.document elements using JQuery in firefox? Paul 2009-07-15T19:07:46Z 2009-07-15T19:07:46Z <p>Try</p> <p>$(elementid,window.parent.frames[0].document).attr(attributeName)</p> <p>What are you trying to achieve - perhaps giving the question in context will get you better solutions.</p> http://stackoverflow.com/questions/1090975/open-source-solution-for-social-network-forum/1091002#1091002 1 Answer by Paul for Open source solution for social network forum Paul 2009-07-07T08:20:51Z 2009-07-07T08:20:51Z <p>There are a shed load, really depends on your needs.</p> <p><a href="http://elgg.org" rel="nofollow">http://elgg.org</a></p> <p><a href="http://wordpress.org/development/2009/04/make-friends-with-buddypress/" rel="nofollow">buddypress</a></p> <p><a href="http://www.web-strategist.com/blog/2007/02/12/list-of-white-label-social-networking-platforms/" rel="nofollow">Web strategist list of white label platforms.</a></p> http://stackoverflow.com/questions/1058941/settings-class-architecture 0 Settings class architecture. Paul 2009-06-29T15:30:09Z 2009-06-29T16:41:00Z <p>Just wondering what the best practise advice would be on the architecture for a settings class. We've a number of tables which will be used to populate the class, I'm guessing a Hashtable is the best way to go? It also would be nice to have a strongly typed collection available through the scope of the app in Intellisense.</p> <p>e.g. </p> <p>Settings.Car.Colour</p> <p>I'm also wondering about the SQL dependancy classes in .NET - I'd like to implement this observer pattern- just wondering if anyone has any thoughts on whether its the best option - or should I roll my own solution. The added tables and settings within SQL server for this to work seem to limit this to a managed server.</p> <p>Any other classes within the framework that I should look at?</p> http://stackoverflow.com/questions/1011519/entity-framework-entitykey-foreign-key-problem 0 Entity Framework EntityKey / Foreign Key problem. Paul 2009-06-18T08:41:44Z 2009-06-24T13:56:20Z <p>As the result of a form post, I'm trying to save a new Brand record. In my view, Gender is a dropdown, returning an Integer, which is populated from ViewData("gender")</p> <p>I've setup my link as follows:</p> <pre><code>gID = CInt(Request.Form("Gender")) Brand.GenderReference.EntityKey = New EntityKey("DB_ENTITIES.Gender", "Id", gID) TryUpdateModel(Brand) DB.SaveChanges() </code></pre> <p>Which results in the following error.</p> <pre><code>Entities in 'DB_ENTITIES.Brand' participate in the 'FK_Brand_Gender' relationship. 0 related 'Gender' were found. 1 'Gender' is expected. </code></pre> <p>Could someone explain the parameters in plain english to me. I've also tried DB.Gender as the first parameter but no joy. </p> http://stackoverflow.com/questions/1034984/net-how-to-measure-time-taken-to-download-just-the-httppost-body-excluding-httpp/1035113#1035113 0 Answer by Paul for .net How to measure time taken to download just the httpPost body excluding httpPost headers and upload data Paul 2009-06-23T20:50:57Z 2009-06-23T20:50:57Z <p>This might be somewhere to start..</p> <p><a href="http://msdn.microsoft.com/en-us/library/system.net.webclient.downloadprogresschanged%28VS.95%29.aspx" rel="nofollow">DownloadProgressChanged</a> (when it fires)</p> <p>and </p> <p><a href="http://msdn.microsoft.com/en-us/library/system.net.webclient.downloadstringcompleted%28VS.95%29.aspx" rel="nofollow">DownloadStringCompleted</a> (when finished)</p> http://stackoverflow.com/questions/1000424/binding-a-simple-sort-dropdown-to-a-list-in-mvc 1 Binding a simple sort dropdown to a list in MVC. Paul 2009-06-16T09:27:49Z 2009-06-19T03:47:30Z <p>Hi guys,</p> <p>Im trying to bind a dropdownlist in ASP.NET MVC to a class. Luckily for me this will be a number between 1 and 10, however I'm not getting the output in my HTML that I would expect. I've set both the value and text properties which are populated ok in the View, but the selected value refuses to render. This is within the initial Edit method of my controller. Any ideas?</p> <pre><code> Dim SC As SuperCategory = Model.Fast.Pull(DB.SuperCategory, ID) Dim list As New List(Of SelectListItem) list.Add(New SelectListItem With {.Value = 1, .Text = "1", .Selected = (.Value = SC.Sort)}) list.Add(New SelectListItem With {.Value = 2, .Text = "2", .Selected = (.Value = SC.Sort)}) list.Add(New SelectListItem With {.Value = 3, .Text = "3", .Selected = (.Value = SC.Sort)}) list.Add(New SelectListItem With {.Value = 4, .Text = "4", .Selected = (.Value = SC.Sort)}) list.Add(New SelectListItem With {.Value = 5, .Text = "5", .Selected = (.Value = SC.Sort)}) list.Add(New SelectListItem With {.Value = 6, .Text = "6", .Selected = True}) list.Add(New SelectListItem With {.Value = 7, .Text = "7", .Selected = (.Value = SC.Sort)}) list.Add(New SelectListItem With {.Value = 8, .Text = "8", .Selected = (.Value = SC.Sort)}) list.Add(New SelectListItem With {.Value = 9, .Text = "9", .Selected = (.Value = SC.Sort)}) list.Add(New SelectListItem With {.Value = 10, .Text = "10", .Selected = (.Value = SC.Sort)}) ViewData("Sort") = list </code></pre> <p>HTML in the view looks like this:</p> <p>Sort: &lt;%=Html.DropDownList("Sort", CType(ViewData("Sort"), IEnumerable(Of SelectListItem)))%></p> http://stackoverflow.com/questions/1011519/entity-framework-entitykey-foreign-key-problem/1012223#1012223 0 Answer by Paul for Entity Framework EntityKey / Foreign Key problem. Paul 2009-06-18T11:49:15Z 2009-06-18T11:49:15Z <p>Ok heres what I've come up with instead of using updateModel. It appears to be problematic / potentially a security risk anyway with potentially additional fields being added in the post. A New instance of Gender can be instantiated via trygetObjectByKey. This is working so far. Any other suggestions on getting UpdateModel to update the Gender property object appreciated.</p> <pre><code>Dim cID As Integer cID = CInt(Request.Form("Gender")) Dim key As New EntityKey(DB.DefaultContainerName() &amp; ".Gender", "ID", cID) Dim objGenderDS As New Gender 'Bring back the Gender object. If DB.TryGetObjectByKey(key, objGenderDS) Then Brand.GenderReference.EntityKey = key Brand.Gender = objGenderDS DB.AddToBrand(Brand) DB.SaveChanges() Else End If </code></pre> http://stackoverflow.com/questions/1011560/looking-for-localhost-apache-server-that-allows-htaccess/1011592#1011592 0 Answer by Paul for Looking for "localhost" apache server that allows .htaccess Paul 2009-06-18T08:59:00Z 2009-06-18T08:59:00Z <p>Xampp will do it, you'll need to enable mod_rewrite first.</p> <p>open the directory you installed Xampp then open \apache\conf\httpd.conf in notepad and search for mod_rewrite.</p> <p>Uncomment the line by removing the # from the beginning. By default mod_rewrite is disabled on a fresh install.</p> <pre><code>LoadModule rewrite_module modules/mod_rewrite.so </code></pre> <p>Restart Xamppp should take .htaccess rules now.</p> http://stackoverflow.com/questions/1001937/auto-insert-date-and-time-in-form-input-field/1001965#1001965 1 Answer by Paul for Auto insert date and time in form input field? Paul 2009-06-16T14:46:28Z 2009-06-16T14:46:28Z <p>Perhaps try the below. Uses JQuery, which is much cleaner in structure.</p> <p><a href="http://stackoverflow.com/questions/233553/how-do-i-pre-populate-a-jquery-datepicker-textbox-with-todays-date">Good supporting thread.</a></p> http://stackoverflow.com/questions/986451/building-a-dynamic-regular-expression 0 Building a dynamic regular expression. Paul 2009-06-12T12:46:28Z 2009-06-12T13:01:38Z <p>I'm attempting to build a function that will return a regex that is dynamically created. The regex to create will be a range check between two numbers. So far I've got something similar to this (not finished as yet).</p> <p>Is this approach valid, or is there an easier way that I'm overlooking?</p> <pre><code>Public Shared Function Range(ByVal Minimum As Integer, ByVal Maximum As Integer) As String Return "^([" &amp; Minimum.ToString.PadLeft(2, "0") &amp; "]" &amp; Microsoft.VisualBasic.StrDup(Minimum.ToString.Length, "[0-9]") &amp; "|2[0-4][0-9]|25[0-5])$" End Function </code></pre> http://stackoverflow.com/questions/934918/how-to-set-the-vertical-scroll-bar-in-firefox-to-be-in-the-left-side/935042#935042 2 Answer by Paul for how to set the vertical scroll bar in firefox to be in the left side ? Paul 2009-06-01T14:23:13Z 2009-06-01T14:23:13Z <p>You could always do this with a custom scrollbar which is set to look like the standard one. But as others have said I wouldn't recommend. Changing the UI is this way is on the whole a bad idea.</p> <p><a href="http://www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html" rel="nofollow">http://www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html</a></p> http://stackoverflow.com/questions/796909/stopping-and-starting-a-timer-in-asp-net-ajax/797133#797133 1 Answer by Paul for Stopping and starting a Timer in ASP.NET Ajax Paul 2009-04-28T10:01:48Z 2009-04-28T10:01:48Z <p><a href="http://forums.asp.net/t/1094798.aspx" rel="nofollow">http://forums.asp.net/t/1094798.aspx</a></p> <p>then just attach a client side event to the updatepanel ala - </p> <p><a href="http://encosia.com/2007/07/13/easily-refresh-an-updatepanel-using-javascript/" rel="nofollow">http://encosia.com/2007/07/13/easily-refresh-an-updatepanel-using-javascript/</a> - but change to onmouseover to call them.</p> http://stackoverflow.com/questions/667777/running-a-sql-install-script-with-smo-alternative-solutions-needed 0 Running a SQL install script with SMO. Alternative solutions needed. Paul 2009-03-20T20:07:54Z 2009-03-27T09:50:11Z <p>Hi folks,</p> <p>I've got a web application that uses Microsoft Sql Management Objects (SMO) dll's. I'm wondering how I go about redistributing the libraries for a remote machine. </p> <p>As I understand it, these come with SQL server or Sql express - which isn't on the remote (shared) webserver. Asking the host to install them, is probably out of the question, so is it possible to dynamically load them? </p> <p>See below error- </p> <p>Could not load file or assembly 'Microsoft.SqlServer.Smo, Version=9.0.242.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' or one of its dependencies. The system cannot find the file specified.</p> <p>Alternatively, if anyone can provide a workaround for the below snippet that would also be useful. The script variable is a SQL install script which has been read to the end. The nice thing about this is the outputting of each of the execute strings from SQL. I could of course just execute it all in one chunk, but that provides no visual feedback to the user line by line, that the sql is executing ok.</p> <p>Is there a stored procedure that could perform this sort of thing? Or an alternative way to execute an install script without full permissions.</p> <pre><code> Dim connection As New SqlConnection(Me.ConnectionString) connection.Open() connection.Close() Dim server As New Server(New ServerConnection(connection)) server.ConnectionContext.SqlExecutionModes = SqlExecutionModes.ExecuteAndCaptureSql Dim commands As StringCollection = server.ConnectionContext.CapturedSql.Text server.ConnectionContext.ExecuteNonQuery(script, ExecutionTypes.ContinueOnError) Dim s As String For Each s In server.ConnectionContext.CapturedSql.Text AppendMessages(s) Next </code></pre> http://stackoverflow.com/questions/667777/running-a-sql-install-script-with-smo-alternative-solutions-needed/689124#689124 0 Answer by Paul for Running a SQL install script with SMO. Alternative solutions needed. Paul 2009-03-27T09:50:11Z 2009-03-27T09:50:11Z <p><a href="http://www.mattberther.com/2005/04/11/executing-a-sql-script-using-adonet/" rel="nofollow">http://www.mattberther.com/2005/04/11/executing-a-sql-script-using-adonet/</a></p> <p>from </p> <p><a href="http://coolthingoftheday.blogspot.com/2006/11/execute-t-sql-scripts-with-gos.html" rel="nofollow">http://coolthingoftheday.blogspot.com/2006/11/execute-t-sql-scripts-with-gos.html</a></p> <p>Was what I was looking for, and did the trick.</p> http://stackoverflow.com/questions/667821/force-asp-net-clean-compile/667922#667922 1 Answer by Paul for Force ASP.NET clean compile Paul 2009-03-20T20:47:39Z 2009-03-20T20:47:39Z <p>I might be reading WAYYY to deeply into this problem, but if you are having problems with references just in case it helps try this:</p> <p><a href="http://geekswithblogs.net/shahed/archive/2006/11/16/97240.aspx" rel="nofollow">http://geekswithblogs.net/shahed/archive/2006/11/16/97240.aspx</a></p> <p>Although disabling batch compilation is a performance hit.</p> http://stackoverflow.com/questions/667218/why-does-my-yui-data-table-not-display-correctly-in-ie/667375#667375 0 Answer by Paul for Why does my YUI data table not display correctly in IE? Paul 2009-03-20T18:28:03Z 2009-03-20T18:28:03Z <p>Have you tried specifying a specific print stylesheet?</p> <p></p> <p>BTW, Prob better to link to a working version of the code, rather than expect stackoverflow users to recreate locally.</p> http://stackoverflow.com/questions/667239/how-can-i-convert-an-rss-feed-to-atom-inline/667360#667360 1 Answer by Paul for How can I convert an RSS feed to Atom, inline? Paul 2009-03-20T18:23:18Z 2009-03-20T18:23:18Z <p>Atom to RSS on the fly</p> <p>Sounds like a Yahoo Pipes job to me..</p> <p><a href="http://pipes.yahoo.com/pipes/pipe.info?_id=Aj_YHfi62xGuBj4KkAtvUw" rel="nofollow">http://pipes.yahoo.com/pipes/pipe.info?_id=Aj_YHfi62xGuBj4KkAtvUw</a></p> http://stackoverflow.com/questions/541033/maintaining-video-website-performance/541074#541074 0 Answer by Paul for Maintaining video website performance Paul 2009-02-12T12:40:50Z 2009-02-12T12:40:50Z <p>someone posted this link on Youtube scaling to me recently might be useful / relevant.</p> <p><a href="http://video.google.com/videoplay?docid=-6304964351441328559" rel="nofollow">http://video.google.com/videoplay?docid=-6304964351441328559</a></p> http://stackoverflow.com/questions/540963/reference-one-inline-class-from-another 0 Reference one inline class from another. Paul 2009-02-12T11:47:47Z 2009-02-12T11:47:47Z <p>Guys,</p> <p>I’m having difficulty referencing one main VB file from a new vb file. Here's the problem - the code file is ancient, and runs on ASP.NET 1.1. It runs without being compiled to a DLL, and changes regularly. for that reason, I'd rather not compile either New Person or Old Person to a DLL. </p> <p>A default page look something like this.</p> <pre><code>Inherits="MyOldPersonClass" Src="bin/MyOldPersonClass.vb" </code></pre> <p>A new page I'm using look something like this.</p> <pre><code>Inherits="MyNewPersonClass" Src="bin/MyNewPersonClass.vb" </code></pre> <p>The class name I wish to reference is for example MyOldPersonClass – and I'm trying to reference it inside MyNewPersonClass, so I can grab older methods.</p> <pre><code>Imports MyOldPersonClass Dim objNewPerson as new MyOldPersonClass –doesn’t work </code></pre> <p>I’ve tried System reflection bits and bobs</p> <pre><code>Dim ass As Assembly = Assembly.LoadWithPartialName("MyOldPersonClass") </code></pre> <p>Which compiles but gives object reference errors.</p> <p>I’m trying to get a reference to some of the methods defined in MyOldPersonClass.vb, without copy pasting them into MyNEWPersonClass.vb</p> http://stackoverflow.com/questions/1600718/unclosed-connection-connection-pool-debugging-sql-server/1600737#1600737 Comment by Paul on Unclosed connection - Connection Pool debugging SQL Server Paul 2009-10-26T15:46:57Z 2009-10-26T15:46:57Z This will show the connections open. However it doesn't really link to any codebase to help isolate WHERE this occurs. We've had to fire the application in different areas to try and isolate a particular section of code, all whilst watching the profiler. http://stackoverflow.com/questions/1205341/tool-to-replace-include-with-its-own-contents/1205387#1205387 Comment by Paul on Tool to replace include with its own contents? Paul 2009-07-30T15:48:20Z 2009-07-30T15:48:20Z multiple include files with different content..the partial match would be performed on the filename of the include. i.e. I know that the ONLY include files in this project that I wish to search inside and replace start with a certain pattern. http://stackoverflow.com/questions/1205341/tool-to-replace-include-with-its-own-contents/1205387#1205387 Comment by Paul on Tool to replace include with its own contents? Paul 2009-07-30T09:24:40Z 2009-07-30T09:24:40Z I've Visual Studio &amp; Dreamweaver available to me. A site wide find a replace wont really work because the include file differs in name and content. Ideally I'll be partially matching it i.e. content1.asp, content2.asp etc.. http://stackoverflow.com/questions/1164342/seo-and-queries/1164595#1164595 Comment by Paul on SEO and queries Paul 2009-07-22T15:56:18Z 2009-07-22T15:56:18Z I'd also like clarification on this as well. http://stackoverflow.com/questions/1164342/seo-and-queries/1164380#1164380 Comment by Paul on SEO and queries Paul 2009-07-22T15:54:05Z 2009-07-22T15:54:05Z Don't know that this is possible. I mean - how will they know what to ask of your search engine / site? Unless you prepopulate the Get requests with data in the sitemap, there's no way for them to dynamically query your engine. http://stackoverflow.com/questions/1133355/c-writing-to-the-event-viewer Comment by Paul on c# writing to the event viewer Paul 2009-07-15T19:26:23Z 2009-07-15T19:26:23Z Think you have to do some jiggery pokery with the Registry to get the EventLog to log properly with .NET - is the key created? see: <a href="http://support.microsoft.com/kb/329291" rel="nofollow">support.microsoft.com/kb/329291</a> Also suggest you run WriteToEventLog outside the scope of this function to see if it works. http://stackoverflow.com/questions/1129035/data-driven-websites-for-very-small-businesses/1129109#1129109 Comment by Paul on Data-Driven Websites for Very Small Businesses Paul 2009-07-15T19:19:13Z 2009-07-15T19:19:13Z Just like to add my two cents here and vote up for a DTS scenario. I've sucessfully used it (on a batch file process using dtsrun.exe) to replicate data in certain tables between two remote databases. http://stackoverflow.com/questions/1011519/entity-framework-entitykey-foreign-key-problem/1013724#1013724 Comment by Paul on Entity Framework EntityKey / Foreign Key problem. Paul 2009-06-19T09:26:38Z 2009-06-19T09:26:38Z Thanks for the response Alex - getting this now: An object with the same key already exists in the ObjectStateManager. The ObjectStateManager cannot track multiple objects with the same key. http://stackoverflow.com/questions/1011519/entity-framework-entitykey-foreign-key-problem/1011763#1011763 Comment by Paul on Entity Framework EntityKey / Foreign Key problem. Paul 2009-06-18T09:41:32Z 2009-06-18T09:41:32Z Does that not involve a round trip to my DB? Surely the View is posting back an ID that can be tied up. http://stackoverflow.com/questions/922402/strongly-typed-asp-net-mvc-with-ado-net-entity-framework Comment by Paul on Strongly-Typed ASP.NET MVC with ADO.NET Entity Framework Paul 2009-06-18T09:37:24Z 2009-06-18T09:37:24Z Just like to say that I'm glad this was left to 'live', and that stackoverflow should be flexible for people to document stuff like this. for a couple of reasons. 1). It ranks highly in search, letting other developers learn off it. i.e. the community benefits. 2) Supporting material like this can be used for other question answers. http://stackoverflow.com/questions/986451/building-a-dynamic-regular-expression Comment by Paul on Building a dynamic regular expression. Paul 2009-06-12T13:02:06Z 2009-06-12T13:02:06Z No its not for an IP address, its just for a range up to 255 for initial testing, essentially this would be to test the full positive range of a valid integer (up to 2,147,483,647) http://stackoverflow.com/questions/986451/building-a-dynamic-regular-expression/986473#986473 Comment by Paul on Building a dynamic regular expression. Paul 2009-06-12T13:00:21Z 2009-06-12T13:00:21Z Perhaps a change in design is on the cards. This does seem overly complex for something so simple in regular code. http://stackoverflow.com/questions/986451/building-a-dynamic-regular-expression/986496#986496 Comment by Paul on Building a dynamic regular expression. Paul 2009-06-12T12:58:58Z 2009-06-12T12:58:58Z It is to validate the actual range values. Yep and Eek. http://stackoverflow.com/questions/986451/building-a-dynamic-regular-expression/986473#986473 Comment by Paul on Building a dynamic regular expression. Paul 2009-06-12T12:52:34Z 2009-06-12T12:52:34Z I realist that that would be an easier way to do this. For reusability of this particular section of code, I need a regex. Paul. http://stackoverflow.com/questions/667777/running-a-sql-install-script-with-smo-alternative-solutions-needed/669542#669542 Comment by Paul on Running a SQL install script with SMO. Alternative solutions needed. Paul 2009-03-26T18:42:39Z 2009-03-26T18:42:39Z Needs to be a standalone solution, executed by a non techie user from a web application. So that is out too. Thanks though.