User samjudson - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T00:33:20Z http://stackoverflow.com/feeds/user/1908 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1642104/evernote-export-format-enex-to-html-including-pictures/1662267#1662267 2 Answer by samjudson for Evernote export format (ENEX) to HTML, including pictures? samjudson 2009-11-02T16:26:41Z 2009-11-02T16:26:41Z <p>There is a new Data URI specification <a href="http://en.wikipedia.org/wiki/Data_URI_scheme" rel="nofollow">http://en.wikipedia.org/wiki/Data_URI_scheme</a> which may be of some help provided you are only intending to support modern browsers, and your images are small (for example IE8 only support &lt;32k images).</p> <p>Other than that the only other thing you can do is use some external scripts to export the image data to file and use them. This would depend greatly on what XSLT processor you are using.</p> http://stackoverflow.com/questions/1553575/xslt-how-to-parse-xml-with-recursive-elements-to-eclipse-toc-xml/1553615#1553615 2 Answer by samjudson for XSLT - how to parse xml with recursive elements to Eclipse toc.xml? samjudson 2009-10-12T09:41:07Z 2009-10-12T09:41:07Z <p>I think the following does what you want:</p> <pre><code>&lt;xsl:template match="BODY"&gt; &lt;toc label="Sample Table of Contents"&gt; &lt;xsl:apply-templates select="UL/LI/OBJECT"/&gt; &lt;/toc&gt; &lt;/xsl:template&gt; &lt;xsl:template match="OBJECT"&gt; &lt;topic label="{param[@name='Name']/@value}" href="{param[@name='Local']/@value}"&gt; &lt;xsl:apply-templates select="following-sibling::UL/LI/OBJECT"/&gt; &lt;/topic&gt; &lt;/xsl:template&gt; </code></pre> http://stackoverflow.com/questions/209029/best-way-to-remove-an-event-handler-in-jquery/210345#210345 14 Answer by samjudson for best way to remove an event handler in jquery? samjudson 2008-10-16T21:13:55Z 2009-09-30T19:12:59Z <p>In your example code you are simply adding another click event to the image, not overriding the previous one:</p> <pre><code>$('#myimage').click(function() { return false; }); // Adds another click event </code></pre> <p>Both click events will then get fired.</p> <p>As people have said you can use unbind to remove all click events:</p> <pre><code>$('#myimage').unbind('click'); </code></pre> <p>If you want to add a single event and then remove it (without removing any others that might have been added) then you can use event namespacing:</p> <pre><code>$('#myimage').bind('click.mynamespace', function() { /* Do stuff */ }); </code></pre> <p>and to remove just your event:</p> <pre><code>$('#myimage').unbind('click.mynamespace'); </code></pre> http://stackoverflow.com/questions/1377258/using-the-current-http-request-identity-as-the-default-credentials-for-sharpsvn/1393244#1393244 0 Answer by samjudson for Using the current HTTP request identity as the default credentials for SharpSVN samjudson 2009-09-08T10:39:18Z 2009-09-08T10:39:18Z <p>Have you tried using <code>CredentialCache.DefaultCredentials</code> - this should contain the credentials of the currently logged in user.</p> <p><a href="http://support.microsoft.com/kb/813834" rel="nofollow">http://support.microsoft.com/kb/813834</a></p> http://stackoverflow.com/questions/1362233/c-where-to-unsubscribe-events-in-a-usercontrol/1362267#1362267 0 Answer by samjudson for C#: Where to unsubscribe events in a UserControl samjudson 2009-09-01T12:40:38Z 2009-09-01T12:40:38Z <p>As others have said is there really a need to unsubscribe in your scenario?</p> <p>If you really do need to unsubscribe however you do it exactly the reverse of subscribing:</p> <pre><code>UserControl1.Click -= new EventHandler(UserControl1_Click); </code></pre> http://stackoverflow.com/questions/16432/c-string-output-format-or-concat/16449#16449 3 Answer by samjudson for C# String output: format or concat? samjudson 2008-08-19T15:53:59Z 2009-09-01T11:31:12Z <p>Generally I prefer the former, as especially when the strings get long it can be much easier to read.</p> <p>The other benefit is I believe one of performance, as the latter actually performs 2 string creation statements before passing the final string to the Console.Write method. String.Format uses a StringBuilder under the covers I believe, so multiple concatenations are avoided.</p> <p>It should be noted however that if the parameters you are passing in to String.Format (and other such methods like Console.Write) are value types then they will be boxed before passed in, which can provide its own performance hits. <a href="http://jeffbarnes.net/blog/post/2006/08/08/Avoid-Boxing-When-Using-StringFormat-with-Value-Types.aspx" rel="nofollow">Blog post on this here</a>.</p> http://stackoverflow.com/questions/1239759/transact-sql-case-over-a-variable-length-inputexpression/1239783#1239783 3 Answer by samjudson for Transact SQL CASE over a variable length input_expression samjudson 2009-08-06T15:45:39Z 2009-08-06T15:45:39Z <p>You can do case statements like the following:</p> <pre><code>select case when substring(pan,1,2) = '37' then 'AMEX' when substring(pan,1,1) = '3' then 'Diners' when substring(pan,1,1) = '4' then 'Mastercard' when substring(pan,1,1) = '5' then 'VISA' else 'unknown' end, count(*), sum(amount) from transactions group by card_type </code></pre> http://stackoverflow.com/questions/1239667/t-sql-datetimes-substracting/1239707#1239707 0 Answer by samjudson for T-SQL datetimes substracting. samjudson 2009-08-06T15:31:43Z 2009-08-06T15:31:43Z <p>The reason for the issue you are seeing is the way SQL handles the two parts of the way it stores a date.</p> <p>A date is stored as two part, inside a numerical value. The First part, the integer part stores the day, and the second part, the decimal part stores the time.</p> <p>If your two dates were equivalent to 1.50 and 1.25 then 1.25 - 1.50 = -0.25 - this is then split up into two parts, -0 Days, and .25 Time. 0.25 of a day would translate to 6 hours, so would give a time of 6.00AM.</p> <p>To get proper date manipulation you should always use DATEDIFF and DATEPART.</p> http://stackoverflow.com/questions/909526/jquery-callbacks-being-called-multiple-times/909634#909634 1 Answer by samjudson for jquery callbacks being called multiple times samjudson 2009-05-26T08:39:47Z 2009-08-06T15:23:06Z <p>That would produce the alert when the fadeOut on the last element was called. That would not necessarily be the last fadeOut.</p> <pre><code>var numDivs = $('div').length; $('div').fadeOut(1000, function() { if( numDivs-- &gt; 0 ) return; alert('this is the final fadeout to complete'); }); </code></pre> http://stackoverflow.com/questions/1098038/what-is-tkey-and-tvalue-in-a-generic-dictionary/1098065#1098065 0 Answer by samjudson for What is TKey and TValue in a generic dictionary? samjudson 2009-07-08T13:24:32Z 2009-07-08T13:24:32Z <p>There is a convention to use T to signify the class which your generic class is based on (e.g. <code>List&lt;T&gt;</code>). A dictionary however is based on two classes, so they chose to distinguish them with the Key and Value suffix.</p> <p>They could have chosen anything - elsewhere in other scenarios I have seen T and U used, and other subsequent letters (i.e. V, X etc) if more classes are needed.</p> http://stackoverflow.com/questions/1068562/xslt-for-declarative-language/1092342#1092342 0 Answer by samjudson for XSLT For Declarative Language samjudson 2009-07-07T13:29:38Z 2009-07-07T13:29:38Z <p>There are probably lots of different ways of doing the same thing. The example you give above is a very declarative method, and a good example of how XSLT can handle things very differently from other languages. </p> <p>You could also use to loop through the attributes in the above "button" template.</p> <p>Another alternative might be to provide a generic style attribute template, and give it a different mode:</p> <pre><code>&lt;xsl:template match="button"&gt; var &lt;xsl:value-of select="@id" /&gt; = new &lt;xsl:value-of select="@renderer" /&gt;({ id: &lt;xsl:value-of select="@id" /&gt;, styles: { &lt;xsl:apply-templates select="@height | @vOffset" mode="style"/&gt; }, }).appendTo(panel); &lt;/xsl:template&gt; &lt;xsl:template match="@*" mode="style"&gt; &amp;#9;&amp;#9;&lt;xsl:value-of select="name()" /&gt;: &lt;xsl:value-of select="." /&gt;, &lt;/xsl:template&gt; </code></pre> <p>The style template can therefore be reused by many 'controls' with different style attributes.</p> http://stackoverflow.com/questions/1091586/creating-an-web-api-in-asp-net/1091607#1091607 0 Answer by samjudson for Creating an web API in ASP.Net samjudson 2009-07-07T10:41:30Z 2009-07-07T12:57:13Z <p>REST is a simple architectural style for designing APIs that is easy to consume from multiple platforms.</p> <p>SOAP is more complicated and but does provides standards for many extra protocols such as transactional reliability, messaging, security, authentication etc.</p> <p>Unless you are writing a complex enterprise messaging system then REST will probably be fine (but don't quote me on that).</p> <p>You might want to look at the REST in WCF web pages from Microsoft. <a href="http://msdn.microsoft.com/en-us/netframework/cc950529.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/netframework/cc950529.aspx</a>.</p> http://stackoverflow.com/questions/1091558/named-groups-in-regular-expression/1091580#1091580 0 Answer by samjudson for Named Groups in Regular Expression samjudson 2009-07-07T10:36:38Z 2009-07-07T10:36:38Z <p>Capture groups in Regex are enclosed in brackets (e.g. <code>"(\d+ Week)"</code>).</p> <p>Named capture groups are done using a question mark and the name, <code>"(?&lt;week&gt;\d+ Week)"</code>.</p> <p>They are then returned as follows, <code>m.Groups("week").Value</code>.</p> <p>The full regex (untested) might look something like this:</p> <pre><code> (?&lt;weeks&gt;\d+ weeks?)\s*(?&lt;days&gt;\d+ days?)\s*(?&lt;hours&gt;\d+ hours?)\s*(?&lt;minutes&gt;\d+ minutes?) </code></pre> http://stackoverflow.com/questions/1072360/converting-xslt-1-0-to-xslt-2-0/1091562#1091562 1 Answer by samjudson for Converting XSLT 1.0 to XSLT 2.0 samjudson 2009-07-07T10:32:28Z 2009-07-07T10:32:28Z <p>XSLT should be pretty much backward compatibly, although obviously there are things you can use in XSLT 2.0 that make life much easier.</p> <p>It sounds like you have something wrong in your XSLT, but as you don't provide anything for us to look at it is hard to say.</p> <p>I would recommend getting hold of Kernow-for-Saxon - it is a great UI for testing XSLT (much better than trying to use Firefox or IE) and if you have errors in your XSLT then Saxon is one of the better XSLT processors for giving good errors to try to identify the cause.</p> <p><a href="http://kernowforsaxon.sourceforge.net/" rel="nofollow">http://kernowforsaxon.sourceforge.net/</a></p> <p>I don't know anything about either the PHP or Qt processors, but it is possible there are errors in them that are not handling your XSLT correctly.</p> http://stackoverflow.com/questions/1087830/asp-convert-milliseconds-to-date/1087871#1087871 3 Answer by samjudson for ASP: convert milliseconds to date samjudson 2009-07-06T16:16:27Z 2009-07-06T16:16:27Z <p>Something like the following should work:</p> <pre><code>Function ConvertPhpToDate(numSeconds) Dim dEpoch dEpoch = DateSerial(1970,1,1) ConvertPhpToDate = DateAdd("s",numSeconds,dEpoch) End Function </code></pre> <p>Note, the php <code>time()</code> function returns the number of 'seconds', not milliseconds. <a href="http://php.net/manual/en/function.time.php" rel="nofollow">http://php.net/manual/en/function.time.php</a></p> http://stackoverflow.com/questions/1087819/handling-events-of-controls-added-during-runtime/1087849#1087849 4 Answer by samjudson for handling events of controls added during runtime samjudson 2009-07-06T16:11:32Z 2009-07-06T16:11:32Z <p>A couple of things:</p> <p>Firstly you need to make sure the new Controls are added in the Page.OnInit event, so that they are added before the raised events are processed. </p> <p>They also need to be added again on a postback!</p> <p>They also need to have a unique ID set.</p> <p>Finally you can handle the event just like you would in any C# app:</p> <pre><code>edit.Click += new EventHander(EditButton_Click); </code></pre> <p>and later in the code:</p> <pre><code>protected void EditButton_Click(object sender, EventArgs e) { // Do Something } </code></pre> http://stackoverflow.com/questions/1057610/looking-for-a-summary-of-which-version-of-xslt-is-supported-in-each-major-browser/1064637#1064637 1 Answer by samjudson for Looking for a summary of which version of XSLT is supported in each major browser samjudson 2009-06-30T16:18:20Z 2009-06-30T16:18:20Z <p>No browser supports anything above XSLT 1.0 at present.</p> <p>Current XSLT 2.0 processors include Saxon, Gestalt, Altova and possible an IBM processor in beta.</p> http://stackoverflow.com/questions/1064152/how-to-debug-the-mysql-error-message-caught-an-exception-while-rendering/1064179#1064179 2 Answer by samjudson for How to debug the MySQL error message: Caught an exception while rendering... samjudson 2009-06-30T15:02:53Z 2009-06-30T15:02:53Z <p>Is it possible that there are no questions, in which case the SQL will contain something like <code>"WHERE question_id IN ()"</code> which wouldn't be valid SQL.</p> http://stackoverflow.com/questions/1058020/does-datetime-tostrings-return-always-same-format/1058024#1058024 10 Answer by samjudson for Does DateTime.ToString("s") return always same format? samjudson 2009-06-29T12:25:51Z 2009-06-29T12:25:51Z <p>Yes it does.</p> http://stackoverflow.com/questions/1057315/db4o-running-in-asp-net-medium-trust-environment/1057330#1057330 0 Answer by samjudson for db4o running in asp.net Medium Trust environment samjudson 2009-06-29T09:08:36Z 2009-06-29T09:08:36Z <p>I don't know if this works, but you could try writing a wrapper DLL that has <code>AllowPartiallyTrustedCaller</code> set to true, and passes all calls to the db4o DLL.</p> <p>Seeing as db4o is open source you could download and recompile with <code>AllowPartiallyTrustedCaller</code> set to true yourself of course.</p> <p><a href="http://developer.db4o.com/forums/thread/27550.aspx" rel="nofollow">This</a> thread however suggests that that might not work.</p> http://stackoverflow.com/questions/1057272/how-to-avoid-mutable-state-when-multithreading/1057302#1057302 1 Answer by samjudson for How to avoid mutable state (when multithreading) samjudson 2009-06-29T09:00:51Z 2009-06-29T09:00:51Z <p>There are many pitfalls when working with multiple threads and large sets of data. The advice to avoid mutable state is meant to try to make life easier for you if you can manage to follow the guideline (i.e. if you have no mutable state then multi-threading will be much easier).</p> <p>If you have a large amount of data that does need to be modified then you perhaps cannot avoid mutable state. An alternative though would be to partition the data into blocks, each of which is passed to a thread for manipulation. The block can be processed and then passed back, and the controller can then perform the updates where necessary. In this scenario you have removed the mutable state from out of the the thread.</p> <p>If this cannot be done and each thread needs update access to the full list (i.e. it could update any item on the list at any time) then you are going to have a lot of fun trying to make sure you have got your locking strategies and concurrency issues sorted. I'm sure there are scenarios where this is required, and the design pattern of avoiding mutable state may not apply.</p> http://stackoverflow.com/questions/1057226/iteration-in-jquery/1057264#1057264 2 Answer by samjudson for Iteration in JQuery samjudson 2009-06-29T08:52:12Z 2009-06-29T08:52:12Z <p>If you want to iterate through all divs in a panel in JQuery then the easiest way would be to simply do the following:</p> <pre><code>$("#panel div").each(function() { // $(this) refers to the div } </code></pre> <p>If you want to limit this to the first N divs then there are numerous ways to do this:</p> <pre><code>$("#panel div:lt(" + (N+1) + ")").each(function() { // limits to the only those div's less than N+1. } </code></pre> http://stackoverflow.com/questions/985738/how-do-i-update-tables-in-sql-so-that-related-strings-match/985772#985772 1 Answer by samjudson for How do I update tables in SQL so that related strings match? samjudson 2009-06-12T09:15:57Z 2009-06-12T09:15:57Z <p>The following is I believe the simplest:</p> <pre><code> UPDATE TableB SET Path = TableA.Path FROM TableA WHERE TableB.Id = TableA.ID AND TableB.Path &lt;&gt; TableA.Path </code></pre> http://stackoverflow.com/questions/985628/regular-expression-with-atleast-1-letter-and-1-number/985642#985642 0 Answer by samjudson for Regular Expression with atleast 1 letter and 1 number samjudson 2009-06-12T08:41:40Z 2009-06-12T09:03:42Z <p>This would obviously be much easier with two checks, one for the string, one for the number.</p> <p>Something like the following might work though, seeing as if you have both a number and a letter then you must by definition have a number next to a letter (or vice versa):</p> <pre><code>([A-Za-z][0-9]|[0-9][A-Za-z]) </code></pre> <p>Update: removed a spurious '|'. Note, the above assumes no other characters are valid, which I suppose might not be acceptable. See other answer for a better solution if punctuation is allowed.</p> http://stackoverflow.com/questions/985646/c-convert-generic-pointer-to-array/985707#985707 0 Answer by samjudson for C#: convert generic pointer to array samjudson 2009-06-12T08:59:58Z 2009-06-12T08:59:58Z <p>I have no idea whatsoever if the following would work, but it might (at least it compiles :):</p> <pre><code>public unsafe static T[] Create&lt;T&gt;(void* ptr, int length) where T : struct { T[] array = new T[length]; for (int i = 0; i &lt; length; i++) { array[i] = (T)Marshal.PtrToStructure(new IntPtr(ptr), typeof(T)); } return array; } </code></pre> <p>The key is to use <code>Marshal.PtrToStructure</code> to convert to the correct type.</p> http://stackoverflow.com/questions/985574/mapi-in-xbap-application/985625#985625 0 Answer by samjudson for MAPI in XBAP Application samjudson 2009-06-12T08:37:08Z 2009-06-12T08:37:08Z <p>Are you aware that XBAP application run in a partial trust environment.</p> <p>You say "in most cases won't in the XBAP" but don't give any indication of exactly what the problems you are experiences are - are you getting compilation errors, security errors, or some other runtime error.</p> <p>See the following link for details on Partial Security and WPF:</p> <p><a href="http://msdn.microsoft.com/en-us/library/aa970910.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa970910.aspx</a></p> http://stackoverflow.com/questions/982152/how-can-i-get-the-assembly-version-as-a-integer-in-c/982206#982206 1 Answer by samjudson for How can I get the assembly version as a integer in C#? samjudson 2009-06-11T16:37:09Z 2009-06-11T16:37:09Z <p>The following 'works':</p> <pre><code>string version = "8.0.0.1"; int versionNumber = int.Parse(version.Replace(".", "")); </code></pre> <p>However, there would be no difference between version 8.0.11.0 and 8.0.1.10!</p> http://stackoverflow.com/questions/981611/checking-database-for-null-boolean-value/981629#981629 3 Answer by samjudson for Checking database for NULL boolean value samjudson 2009-06-11T14:58:29Z 2009-06-11T14:58:29Z <p>You want <code>IS NULL</code> I believe:</p> <pre><code>SELECT * FROM table WHERE field IS NULL </code></pre> http://stackoverflow.com/questions/981036/how-to-update-another-table-with-the-most-recent-data-in-sql/981133#981133 1 Answer by samjudson for How to update another table with the most recent data in SQL? samjudson 2009-06-11T13:38:35Z 2009-06-11T14:32:21Z <p>I'm not sure if this is the fasted code in the world, it obviously depends on how close the two servers are and how much data you have in each table.</p> <pre><code>UPDATE Table1 SET f2 = T2.f2, f3 = convert(varchar, T2.f3, 101) FROM Table1 T1 INNER JOIN Server.DB.dbo.Table2 T2 ON T1.f1 = T2.f1 WHERE T2.f3 = (SELECT MAX(f3) FROM Server.DB.dbo.Table2 WHERE f1 = T1.f1) </code></pre> <p>An alternative (if you have that much control) is to create a trigger on Table2 which puts the latest version into a temporary table whenever it is updated.</p> <p>Update: Corrected the code.</p> http://stackoverflow.com/questions/980029/xslt-firefox-problem/981278#981278 1 Answer by samjudson for XSLT Firefox Problem samjudson 2009-06-11T14:02:12Z 2009-06-11T14:02:12Z <p>Very strange indeed. The only thing I see when I run it is 'BinaryMark'.</p> <p>Seeing as the only place this appears in the output code is in the javascript at the bottom of the template I changed it to the following and it works fine:</p> <pre><code>&lt;p align="center" class="text"&gt; This Report was generated by &lt;a href="{Report/@GeneratorURL" target="_blank"&gt; &lt;xsl:value-of select="Report/@Generator"/&gt;&lt;/a&gt; on </code></pre> http://stackoverflow.com/questions/1642104/evernote-export-format-enex-to-html-including-pictures/1662267#1662267 Comment by samjudson on Evernote export format (ENEX) to HTML, including pictures? samjudson 2009-11-10T14:46:03Z 2009-11-10T14:46:03Z Well personally I'd process them in C# because I'm a .Net developer, but you could use Java (in which case there are almost unlimited XSLT processors - Saxon being the best IMHO). Each processor has its own way of implementing extension methods however. http://stackoverflow.com/questions/1553575/xslt-how-to-parse-xml-with-recursive-elements-to-eclipse-toc-xml/1553615#1553615 Comment by samjudson on XSLT - how to parse xml with recursive elements to Eclipse toc.xml? samjudson 2009-10-13T08:05:03Z 2009-10-13T08:05:03Z In XSLT 2.0 either will work, but in XSLT 1.0 only the latter will work. http://stackoverflow.com/questions/909526/jquery-callbacks-being-called-multiple-times/909634#909634 Comment by samjudson on jquery callbacks being called multiple times samjudson 2009-08-06T15:24:00Z 2009-08-06T15:24:00Z Apologies - should be 'numDivs' inside the function. http://stackoverflow.com/questions/30211/windows-built-in-zip-compression-script-able/30224#30224 Comment by samjudson on Windows built-in ZIP compression script-able? samjudson 2009-08-06T15:22:26Z 2009-08-06T15:22:26Z You can 'zip' files up into a single file without compressing them, much like 'tar' in unix. This allows you to distribute the files as a package, but does not reduce their size of disk space. http://stackoverflow.com/questions/1098066/i-want-to-be-able-to-see-the-displayrmuform-when-rmuboolean-and-effectivedate Comment by samjudson on I want to be able to see the 'displayrmuform' when rmuboolean and effectivedate (right after inputting date) is not null samjudson 2009-07-08T13:30:12Z 2009-07-08T13:30:12Z What do you mean by 'not working' - do you get an error, if so list it. http://stackoverflow.com/questions/1098066/i-want-to-be-able-to-see-the-displayrmuform-when-rmuboolean-and-effectivedate Comment by samjudson on I want to be able to see the 'displayrmuform' when rmuboolean and effectivedate (right after inputting date) is not null samjudson 2009-07-08T13:27:09Z 2009-07-08T13:27:09Z You have tagged as C#, yet that looks like JavaScript to me. http://stackoverflow.com/questions/1091586/creating-an-web-api-in-asp-net/1091607#1091607 Comment by samjudson on Creating an web API in ASP.Net samjudson 2009-07-07T12:56:26Z 2009-07-07T12:56:26Z Agreed - reworded answer. http://stackoverflow.com/questions/1091382/how-to-manipulate-nodes-coming-from-a-get-request/1091405#1091405 Comment by samjudson on How to manipulate nodes coming from a $.get request? samjudson 2009-07-07T09:58:16Z 2009-07-07T09:58:16Z Are you sure you don't just mean $(newHtml)? http://stackoverflow.com/questions/1087819/handling-events-of-controls-added-during-runtime/1087849#1087849 Comment by samjudson on handling events of controls added during runtime samjudson 2009-07-07T09:56:32Z 2009-07-07T09:56:32Z Put &quot;Button thisButton = (Button)sender;&quot; in the event handler. http://stackoverflow.com/questions/1087819/handling-events-of-controls-added-during-runtime/1087849#1087849 Comment by samjudson on handling events of controls added during runtime samjudson 2009-07-06T16:37:20Z 2009-07-06T16:37:20Z Yes, right after the Button edit = new Button() line. http://stackoverflow.com/questions/1087819/handling-events-of-controls-added-during-runtime/1087849#1087849 Comment by samjudson on handling events of controls added during runtime samjudson 2009-07-06T16:20:05Z 2009-07-06T16:20:05Z The first time I did this it was not setting the ID that really got me for ages. http://stackoverflow.com/questions/1057292/sessionstate-out-of-memory-exception Comment by samjudson on SessionState out of memory exception samjudson 2009-06-29T09:04:11Z 2009-06-29T09:04:11Z Are you talking about ASP.Net? What are the size of the variables you are assigning to the session variables (and how many sessions are we talking about roughly)? http://stackoverflow.com/questions/1057294/sql-exception Comment by samjudson on sql exception samjudson 2009-06-29T09:01:55Z 2009-06-29T09:01:55Z I'm not familiar with those functions. Could you define which class and methods you are referring to. http://stackoverflow.com/questions/981036/how-to-update-another-table-with-the-most-recent-data-in-sql/981133#981133 Comment by samjudson on How to update another table with the most recent data in SQL? samjudson 2009-06-16T09:29:28Z 2009-06-16T09:29:28Z Yes, much faster. Also, I notice you are converting the date from a date to a string. If it is possible to have both fields as dates then it would speed things up as the conversion would not have to take place. http://stackoverflow.com/questions/985646/c-convert-generic-pointer-to-array/985707#985707 Comment by samjudson on C#: convert generic pointer to array samjudson 2009-06-12T09:09:47Z 2009-06-12T09:09:47Z void* was used because you don't know what type the pointer is. I know very little about pointers to be honest - but this hopefully might get whoever is trying this in the right direction.