User CMPalmer - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T15:52:59Z http://stackoverflow.com/feeds/user/14894 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/341900/how-can-i-determine-the-element-type-of-a-matched-element-in-jquery 7 How can I determine the element type of a matched element in jQuery? CMPalmer 2008-12-04T20:16:53Z 2009-07-17T12:02:27Z <p>I'm matching ASP.Net generated elements by ID name, but I have some elements which may render as text boxes or labels depending on the page context. I need to figure out whether the match is to a textbox or label in order to know whether to get the contents by val() or by html().</p> <pre><code>$("[id$=" + endOfIdToMatch + "]").each(function () { //determine whether $(this) is a textbox or label //do stuff }); </code></pre> <p>I found a solution that doesn't work, it just returns "undefined":</p> <pre><code>$("[id$=" + endOfIdToMatch + "]").each(function () { alert($(this).tagName); }); </code></pre> <p>What am I missing?</p> http://stackoverflow.com/questions/1019070/querying-core-data-with-predicates-iphone/1019273#1019273 0 Answer by CMPalmer for Querying Core Data with Predicates - iPhone CMPalmer 2009-06-19T18:02:42Z 2009-06-19T18:02:42Z <p>Did you try it using MATCH and regular expressions? Just curious to see if LIKE is something that should be avoided on the iPhone or not...</p> http://stackoverflow.com/questions/1017970/why-do-people-use-linq-to-sql/1018193#1018193 3 Answer by CMPalmer for Why do people use linq to sql? CMPalmer 2009-06-19T14:19:25Z 2009-06-19T14:19:25Z <p>I'm not saying this is an ideal solution or even a great example (it was the result of a high level constraint on the architecture, not something we necessarily would have chosen from scratch), but...</p> <p>I worked on an app where the code was completely isolated from the database except through a set of exposed stored procs. The code could not "know" anything about the database schema except was was returned from the stored procs.</p> <p>While this isn't that unusual and it isn't too hard to write a DAL using ADO or whatever, I decided to try out Linq to Sql, even though it wouldn't be using it for its real intended purpose and wouldn't use most of the features. Turns out it was a great decision.</p> <p>I created the Linq to Sql class, dragged the stored procs from server explorer onto the right side of the designer, then... Wait, there is no then. I was pretty much done.</p> <p>Linq created strongly typed methods for each stored proc. For the procs that returned rows of data, Linq automatically created a class for the items in each row and returned a <code>List&lt;generatedClass&gt;</code> for them. I wrapped the calls themselves in a lightweight public DAL class that did some verification and some automatic parameter setting and I was done. I wrote a business object class and mapped the dynamically generated Linq class objects to the business object (did this by hand, but it isn't hard to do or maintain).</p> <p>The program is now immune to any schema change that doesn't affect the stored procedure signatures. If the signatures do change, we just drag off the old proc from the design and drag it back to regenerate the code. A few passes through the unit tests to make changes (which usually don't go higher than the public DAL interface) and it's done. Things upstream of the DAL use Linq to Objects techniques to select, filter, and sort data that isn't in the right format straight from the stored proc calls.</p> <p>We have some excellent DBAs writing the stored procedures and an entirely different group writing the other code, so maybe it is a good example of why (and how) you can use LINQ in the scenario you describe.</p> http://stackoverflow.com/questions/284753/nuggets-of-wisdom/926973#926973 10 Answer by CMPalmer for Nuggets of wisdom? CMPalmer 2009-05-29T16:41:30Z 2009-05-29T16:41:30Z <p>"Measure twice, cut once" - good philosophy for any discipline...</p> http://stackoverflow.com/questions/921670/browser-dependent-problem-rendering-wmd-with-showdown-js 0 Browser dependent problem rendering WMD with Showdown.js? CMPalmer 2009-05-28T15:58:12Z 2009-05-28T20:06:04Z <p>This should be easy (at least no one else seems to be having a similar problem), but I can't see where it is breaking.</p> <p>I'm storing Markdown'ed text in a database that is entered on a page in my app. The text is entered using WMD and the live preview looks correct.</p> <p>On another page, I'm retrieving the markdown text and using Showdown.js to convert it back to HTML client-side for display.</p> <p>Let's say I have this text:</p> <pre><code>The quick **brown** fox jumped over the *lazy* dogs. 1. one 1. two 4. three 17. four </code></pre> <p>I'm using this snippet of Javascript in my jQuery document ready event to convert it:</p> <pre><code>var sd = new Attacklab.showdown.converter(); $(".ClassOfThingsIWantConverted").each(function() { this.innerHTML = sd.makeHtml($(this).html()); } </code></pre> <p>I suspect this is where my problem is, but it <em>almost</em> works.</p> <p>In FireFox, I get what I expected:</p> <p>The quick <strong>brown</strong> fox jumped over the <em>lazy</em> dogs.</p> <ol> <li>one</li> <li>two</li> <li>three</li> <li>four</li> </ol> <p>But in IE (7 and 6), I get this:</p> <p>The quick <strong>brown</strong> fox jumped over the <em>lazy</em> dogs. 1. one 1. two 4. three 17. four</p> <p>So apparently, IE is stripping the breaks in my markdown code and just converting them to spaces. When I do a view source of the original code (prior to the script running), the breaks are there inside the container DIV.</p> <p>What am I doing wrong?</p> <p><strong>UPDATE</strong></p> <p>It is caused by the IE innerHTML/innerText "quirk" and I should have mentioned before that this one on an ASP.Net page using data bound controls - there are obviously a lot of different workarounds otherwise.</p> http://stackoverflow.com/questions/921670/browser-dependent-problem-rendering-wmd-with-showdown-js/922886#922886 2 Answer by CMPalmer for Browser dependent problem rendering WMD with Showdown.js? CMPalmer 2009-05-28T20:03:58Z 2009-05-28T20:03:58Z <p>It was the Internet Explorer innerHTML/innerText "quirk" that was causing the problem. For all elements that weren't marked as <code>&lt;pre&gt;</code>, IE strips whitespace for them before handing them off to Javascript.</p> <p>I couldn't just leave the element with the markdown text in <code>&lt;pre&gt;</code> tags because then the HTML generated by Showdown wouldn't appear right. The solution was to wrap it temporarily in a <code>&lt;pre&gt;</code> and then change it.</p> <p>The ASP.Net code looks something like this now:</p> <pre><code>&lt;div class="ClassOfThingsIWantConverted"&gt; &lt;pre&gt;&lt;%# Eval("markdowntext") %&gt;&lt;/pre&gt; &lt;/div&gt; </code></pre> <p>And the Javascript/jQuery looks like this:</p> <pre><code>var sd = new Attacklab.showdown.converter(); $(".ClassOfThingsIWantConverted").each(function() { this.html(sd.makeHtml($("pre",this).text())); } </code></pre> <p>works fine on both browser now...</p> http://stackoverflow.com/questions/734824/anyone-have-ideas-for-solving-the-n-items-remaining-problem-on-internet-explore 10 Anyone have ideas for solving the "n items remaining" problem on Internet Explorer? CMPalmer 2009-04-09T15:53:04Z 2009-04-20T15:54:45Z <p>In my ASP.Net app, which is javascript and jQuery heavy, but also uses master pages and .Net Ajax pieces, I am consistently seeing on the status bar of IE 6 (and occasionally IE 7) the message "2 items remaining" or "15 items remaining" followed by "loading <em>somegraphicsfile.png|gif</em> ." This message never goes away and may or may not prevent some page functionality from running (it certainly seems to bog down, but I'm not positive).</p> <p>I can cause this to happen 99% of the time by just refreshing an .aspx age, but the number of items and, sometimes, the file it mentions varies. Usually it is 2, 3, 12, 13, or 15.</p> <p>I've Googled for answers and there are several suggestions or explanations. Some of them haven't worked for us, and others aren't practical for us to implement or try.</p> <p>Here are some of the ideas/theories:</p> <ul> <li><p>IE isn't caching images right, so it repeatedly asks for the same image if the image is repeated on the page and the server assumes that it should be cached locally since it's already served it in that page context. IE displays the images correctly, but sits and waits for a server response that never comes. Typically the file it says it is waiting on is repeated on the page.</p></li> <li><p>The page is using PNG graphics with transparency. Indeed it is, but they are jQuery-UI Themeroller generated graphics which, according to the jQuery-UI folks, are IE safe. The jQuery-UI components are the only things using PNGs. All of our PNG references are in CSS, if that helps. I've changed some of the graphics from PNG to GIF, but it is just as likely to say it's waiting for <em>somegraphicsfile.png</em> as it is for <em>somegraphicsfile.gif</em> </p></li> <li><p>Images are being specified in CSS and/or JavaScript but are on things that aren't currently being displayed (display: none items for example). This <em>may</em> be true, but if it is, then I would think preloading images would work, but so far, adding a preloader doesn't do any good.</p></li> <li><p>IIS's caching policy is confusing the browser. If this is true, it is only Microsoft server SW having problems with Microsoft's browser (which doesn't surprise me at all). Unfortunately, I don't have much control over the IIS configuration that will be hosting the app.</p></li> </ul> <p>Has anyone seen this and found a way to combat it? Particularly on ASP.Net apps with jQuery and jQuery-UI?</p> <p><strong>UPDATE</strong></p> <p>One other data point: on at least one of the pages, just commenting out the jQuery-UI Datepicker component setup causes the problem to go away, but I don't think (or at least I'm not sure) if that fixes all of the pages. If it does "fix" them, I'll have to swap out plug-ins because that functionality needs to be there. There doesn't seem to be any open issues against jQuery-UI on IE6/7 currently...</p> <p><strong>UPDATE 2</strong></p> <p>I checked the IIS settings and "enable content expiration" was <em>not</em> set on any of my folders. Unchecking that setting was a common suggestion for fixing this problem.</p> <p>I have another, simpler, page that I can consistently create the error on. I'm using the jQuery-UI 1.6rc6 file (although I've also tried jQuery-UI 1.7.1 with the same results). The problem only occurs when I refresh the page that contains the jQuery-UI Datepicker. If I comment out the Datepicker setup, the problem goes away. Here are a few things I notice when I do this:</p> <ol> <li>This page always says "(1 item remaining) Downloading picture http:///images/Calendar_scheduleHS.gif", but only when reloading.</li> <li>When I look at HTTP logging, I see that it requests that image from the server every time it is dynamically turned on, without regard to caching.</li> <li>All of the requests for that graphic are complete and return the graphic correctly. None are marked code 200 or 304 (indicating that the server is telling IE to use the cached version). Why it says waiting on that graphic when all of the requests have completed I have no idea.</li> <li>There is a single other graphic on the page (one of the UI PNG files) that has a code 304 (Not Modified). On another page where I managed to log HTTP traffic with "2 items remaining", two different graphic files (both UI PNGs) had a 304 as well (but neither was the one listed as "Downloading".</li> <li>This error is not innocuous - the page is not fully responsive. For example, if I click on one of the buttons which should execute a client-side action, the page refreshes.</li> <li>Going away from the page and coming back does not produce the error.</li> <li>I have moved the script and script references to the bottom of the content and this doesn't affect this problem. The script is still running in the $(document).ready() though (it's too hairy to divide out unless I absolutely have to).</li> </ol> <p><strong>FINAL UPDATE AND ANSWER</strong></p> <p>There were a lot of good answers and suggestions below, but none of them were exactly our problem. The closest one (and the one that led me to the solution) was the one about long running JavaScript, so I awarded the bounty there (I guess I could have answered it myself, but I'd rather reward info that leads to solutions).</p> <p>Here was our solution: We had multiple jQueryUI datepickers that were created on the $(document).ready event in script included from the ASP.Net master page. On this client page, a local script's $(document).ready event had script that destroyed the datepickers under certain conditions. We had to use "destroy" because the previous version of datepicker had a problem with "disable". When we upgraded to the latest version of jQuery UI (1.7.1) and replaced the "destroy"s with "disable"s for the datepickers, the problem went away (or mostly went away - if you do things too fast while the page is loading, it is still possible to get the "n items remaining" status).</p> <p>My theory as to what was happening goes like this:</p> <ol> <li>The page content loads and has 12 or so text boxes with the datepicker class.</li> <li>The master page script creates datepickers on those text boxes.</li> <li>IE queues up requests for each calendar graphic independently because IE doesn't know how to properly cache dynamic image requests.</li> <li>Before the requests get processed, the client area script destroys those datepickers so the graphics are no longer needed.</li> <li>IE is left with some number of orphaned requests that it doesn't know what to do with.</li> </ol> http://stackoverflow.com/questions/727388/why-am-i-seeing-different-font-sizes-when-printing-a-page-from-an-iframe 0 Why am I seeing different font sizes when printing a page from an IFrame? CMPalmer 2009-04-07T20:11:01Z 2009-04-09T15:37:41Z <p>I have a simple, table based HTML page with a very simple style sheet. I can open the page in IE7 and FireFox 3 and it looks exactly the same. I can print the page from both browsers and it looks exactly the same. We'll call the page "ProblemPage.htm"</p> <p>Now, inside an ASP.Net page, I create an IFrame and load that HTML into the IFrame like this:</p> <pre><code>window.frames[iframeId].location.href = "../ProblemPage.htm"; </code></pre> <p>When the user clicks a button on the ASP.Net page, it calls a function that does this:</p> <pre><code>window.frames[iframeId].focus(); window.frames[iframeId].print(); </code></pre> <p>When I do that and print it, the Firefox version looks exactly the same as it did when I loaded the page separately and printed it. The IE7 version reduces all of the font sizes to about half.</p> <p>Note that the page setup settings are pretty much set at their default. I've used different printers and printed directly to PDF. I've cleared my cache repeatedly to make sure I'm using the same CSS. Yet on the same IE7 session, the page by itself prints one way, the page printed via an IFrame as above prints with smaller fonts. While on a single Firefox session, the page by itself prints exactly the same as the page printed via the IFrame.</p> <p>Any ideas? It appears that may some of my styles are "leaking" into the page when I'm printing it on IE or that IE is interpreting the styling different within the IFrame.</p> <p><strong>UPDATE</strong></p> <p>Well, I guess it isn't "leaking styles". If I put the Yahoo CSS Reset in the ProblemPage.css file, it is definitely picked up by both browsers in all four cases, but the problem remains: When IE prints the page from the IFrame, the font sizes are screwed up.</p> <p><strong>UPDATE 2</strong></p> <p>Never found the problem. Simpler test project didn't show the same problem and I suspect there may be a problem with master pages, themes, or something like that. Interestingly, the problem did not occur on IE6, just IE7.</p> <p>I wound up hacking my way around the problem with conditionally commented CSS for IE7 only. That was the only part of the whole app where I had to used conditional CSS.</p> <p>Still would like to have an answer (or even a few WAGs as to what to look for next).</p> http://stackoverflow.com/questions/287927/best-way-to-learn-c/321424#321424 0 Answer by CMPalmer for Best way to learn C# CMPalmer 2008-11-26T17:03:08Z 2009-03-29T22:30:20Z <p>Pretty much the only resource I turn to when learning a new technology is a good book (and <a href="http://www.google.com/search?q=learning%2Bc%23&amp;sourceid=navclient-ff&amp;ie=UTF-8&amp;rlz=1B3GGGL%5FenUS216US216" rel="nofollow">Google</a> of course). I don't work for O'Reilly, but for the most part, I find their books the most useful by far. Much better than "Learn Brain Surgery in 24 Hours!" or "Compiler Design for Dummies" type books. I also hate 900 page books that consist of 700 pages of code listings and screen shots.</p> <p>Most of the O'Reilly books are well written, no glitz, no color, and no rehashing of the reference materials (and distinctively cool woodcut animal drawings).</p> <p>Therefore, I would suggest <strong><a href="http://oreilly.com/catalog/9780596521066/?CMP=AFC-ak%5Fbook&amp;ATT=Learning%2BC%23%2B3.0" rel="nofollow">Learning C# 3.0</a></strong> or <strong><a href="http://oreilly.com/catalog/9780596527433/?CMP=AFC-ak%5Fbook&amp;ATT=Programming%2BC%23%2B3.0" rel="nofollow">Programming C# 3.0</a></strong>. Or, if you want (or need) a beginner book (excellently written, but really for someone with little programming experience and it has glitzy drawings color and less text overall), <strong><a href="http://oreilly.com/catalog/9780596514822/index.html" rel="nofollow">Head First C#</a></strong>. </p> <p><strong>NOTE:</strong> These links go straight to O'Reilly's pages and aren't associate links of any kind...</p> <p><img src="http://oreilly.com/catalog/covers/9780596521066%5Fcat.gif" alt="alt text" /> <img src="http://oreilly.com/catalog/covers/9780596527433%5Fcat.gif" alt="alt text" /> <img src="http://oreilly.com/catalog/covers/9780596514822%5Fcat.gif" alt="alt text" /></p> http://stackoverflow.com/questions/639923/can-you-print-javascript-variables-from-a-visual-studio-2008-tracepoint 0 Can you print JavaScript variables from a Visual Studio 2008 Tracepoint? CMPalmer 2009-03-12T18:35:04Z 2009-03-12T20:53:30Z <p>After learning about how to print out debug messages using Visual Studio's Tracepoint feature, I was curious to see if it worked in JavaScript files. So far, it does and it doesn't.</p> <p>If I am editing a .js file in VS 2008, I can click on the margin to create a breakpoint. I can then right-click the breakpoint and select "When Hit" and the dialog comes up to define the action.</p> <p>I select "Print a Message" and "Continue execution". That way, the breakpoint becomes a tracepoint and prints the message to the output window when the ASP.Net program is running in debug. </p> <p>This, in itself, is very cool. But, in C# code, I can put variables into the printed message by enclosing them in {}. So I can say "In Function $FUNCTION, x = {x}". When I try to do this with JavaScript tracepoints, no matter what I put in the brackets, it just says "<em>variable</em> is not defined".</p> <p>Is there any way to print meaningful information other than "You are here" type messages in JavaScript tracepoints?</p> <p>My intent was to put in timing code that would print to the output console in debug but not have to be commented out for releases.</p> <p>It does at least kinda support JavaScript because if I use it's builtin variables, like $FUNCTION for the function name it works. Actually I just got it to print "JScript anonymous function" for $FUNCTION, but it was in an anonymous function. If there was a $TIMESTAMP I would be in good shape.</p> http://stackoverflow.com/questions/639923/can-you-print-javascript-variables-from-a-visual-studio-2008-tracepoint/639966#639966 0 Answer by CMPalmer for Can you print JavaScript variables from a Visual Studio 2008 Tracepoint? CMPalmer 2009-03-12T18:45:43Z 2009-03-12T20:53:30Z <p>There isn't a $TIMESTAMP, but there is a $TICK. It prints the millisecond count 'tick' in hexadecimal, so it looks like this:</p> <pre><code>Document Ready Start - 0x890A27 Document Ready End - 0x890E7C </code></pre> <p>So a little calculator work can figure out the difference between the two.</p> <p>Still don't know how to evaluate JavaScript variables though...</p> <p>UPDATE:</p> <p>It isn't quite as nice as using tracepoints (since you don't actually add things to the code for them), but Sys.Debug.trace() does what I want as far as timing code sections.</p> http://stackoverflow.com/questions/59934/national-holiday-web-service/587770#587770 0 Answer by CMPalmer for National holiday web service CMPalmer 2009-02-25T20:45:13Z 2009-02-25T20:45:13Z <p>There are tons of similar information that really should be provided by government web services. It would certainly save a lot of money and errors in the long run if the U.S. Government could provide information like this through web services. Heck, even having it in a downloadable, parseable format would be a big step in the right direction.</p> <p>I ran across this question while looking for a way to ensure an application skipped all U.S. Federal holidays in working days calculations. The best .gov source I found is:</p> <p><a href="http://www.opm.gov/Operating%5FStatus%5FSchedules/fedhol/2009.asp" rel="nofollow">Operating Status Schedules from OPM</a></p> <p>This has the data we need through 2020, but we'll have to type it into our own tables.</p> http://stackoverflow.com/questions/376021/can-you-trap-these-radio-button-events-on-internet-explorer 1 Can You Trap These Radio Button Events On Internet Explorer? CMPalmer 2008-12-17T21:04:01Z 2009-02-19T18:50:23Z <p>Consider this sample code:</p> <pre><code>&lt;div class="containter" id="ControlGroupDiv"&gt; &lt;input onbeforeupdate="alert('bingo 0'); return false;" onclick="alert('click 0');return false;" id="Radio1" type="radio" value="0" name="test" checked="checked" /&gt; &lt;input onbeforeupdate="alert('bingo 1'); return false;" onclick="alert('click 1');return false;" id="Radio2" type="radio" value="1" name="test" /&gt; &lt;input onbeforeupdate="alert('bingo 2'); return false;" onclick="alert('click 2');return false;" id="Radio3" type="radio" value="2" name="test" /&gt; &lt;input onbeforeupdate="alert('bingo 3'); return false;" onclick="alert('click 3');return false;" id="Radio4" type="radio" value="3" name="test" /&gt; &lt;input onbeforeupdate="alert('bingo 4'); return false;" onclick="alert('click 4');return false;" id="Radio5" type="radio" value="4" name="test" /&gt; &lt;input onbeforeupdate="alert('bingo 5'); return false;" onclick="alert('click 5');return false;" id="Radio6" type="radio" value="5" name="test" /&gt; &lt;/div&gt; </code></pre> <p>On FireFox 2 and 3, putting the <code>return false</code> on the click event of a radio button prevents the value of it and of all the other radio buttons in the group from changing. This effectively makes it read-only without disabling it and turning it gray.</p> <p>On Internet Explorer, if another radio button is checked and you click on a different one in the group, the checked one clears before the click event fires on the one you clicked. However, the one you clicked on does not get selected because of the 'return false' on the click event. </p> <p><a href="http://msdn.microsoft.com/en-us/library/ms536913(VS.85).aspx" rel="nofollow">According to MSDN</a>, the <a href="http://msdn.microsoft.com/en-us/library/ms536908(VS.85).aspx" rel="nofollow"><code>onbeforeupdate</code></a> event fires on all controls in the control group before the click event fires and I assumed that was where the other radio button was being cleared. But if you try the code above, no alert is ever shown from the <code>onbeforeupdate</code> event - you just get the click event alert. Evidently that event is never getting fired or there isn't a way to trap it.</p> <p>Is there any event you can trap that allows you to prevent other radio buttons in the group from clearing?</p> <p>Note that this is a simplified example, we are actually using jQuery to set event handlers and handle this.</p> <p><strong>Update:</strong> </p> <p>If you add this event to one of the radio buttons:</p> <pre><code>onmousedown="alert('omd'); return false;" </code></pre> <p>The alert box pops up, you close it, and the click event <em>never fires</em>. So we thought we had it figured out, but no, it couldn't be that easy. If you remove the alert and change it to this: </p> <pre><code>onmousedown="return false;" </code></pre> <p>It doesn't work. The other radio button clears and the click event on the button you clicked on fires. <code>onbeforeupdate</code> still never fires.</p> <p>We thought it might be timing (that's always a theory even though it's rarely true), so I tried this:</p> <pre><code>onmousedown="for (i=0; i&lt;100000; i++) {;}; return false;" </code></pre> <p>You click, it pauses for a while, then the other radio button clears and then the click event fires. Aaargh!</p> <p><strong>Update:</strong></p> <p>Internet Explorer sucks. Unless someone comes up with a good idea, we're abandoning this approach and going with the checkbox jQuery extension which does do what we want, but puts a heavier client-side script burden on the page and requires more recoding of the HTML because of the ASP.Net server control rendering and master-page name mangling.</p> http://stackoverflow.com/questions/470707/how-do-i-force-formatting-and-calculations-in-a-pdf-when-filling-other-fields-usi 0 How do I force formatting and calculations in a PDF when filling other fields using iTextSharp? CMPalmer 2009-01-22T20:40:47Z 2009-02-01T17:18:29Z <p>I have a PDF form with a number of text fields. The values entered in these fields are used to calculate values in other fields (the calculated fields are read-only).</p> <p>When I open the form in Adobe Reader and fill in a field, the calculated fields automatically re-calculate.</p> <p>However, I am using iTextSharp to fill in the fields, flatten the resulting form, then stream the flattened form back to the user over the web.</p> <p>That part works just fine except the calculated fields never calculate. I'm assuming that since no user triggered events (like keydowns or focus or blur) are firing, the calculations don't occur.</p> <p>Obviously, I could remove the calculations from the fillable form and do them all on the server as I am filling the fields, but I'd like the fillable form to be usable by humans as well as the server.</p> <p>Does anyone know how to force the calculations?</p> <p>EDIT: I ain't feeling too much iText/iTextSharp love here...</p> <p>Here are a few more details. Setting stamper.AcroFields.GenerateAppearances to true doesn't help.</p> <p>I <em>think</em> the answer lies somewhere in the page actions, but I don't know how to trigger it...</p> http://stackoverflow.com/questions/497802/how-to-stop-asp-net-from-changing-ids-in-order-to-use-jquery/497872#497872 2 Answer by CMPalmer for How to stop ASP.NET from changing IDs in order to use jQuery CMPalmer 2009-01-31T00:44:10Z 2009-01-31T00:44:10Z <p>Most of the suggestions here will work, but test results on jQuery code show that pure ID selectors are by far the fastest. The one I use most often:</p> <pre><code>$("[id$=origControlId]") </code></pre> <p>is pretty slow, but the problem isn't too apparent unless the page has many controls and a lot of jQuery.</p> <p>Since is it fairly painless to assign multiple classes to a control, you could give each one a CSSClass that matches the ID. Since they would then be unique (you'll have to watch repeater type controls that generate multiple controls), you could select by class.</p> <p>For example:</p> <pre><code>&lt;asp:Label ID="Label1" CssClass="Label1 SomeOtherClass" runat="server" Text="test"&gt; &lt;/asp:Label&gt; </code></pre> <p>could be selected uniquely by:</p> <pre><code>$(".Label1") </code></pre> <p>Which is <em>almost</em> as fast as an ID select.</p> <p>I had never considered this one:</p> <pre><code>$('#&lt;%= Label1.ClientID %&gt;') </code></pre> <p>but I'm going to try it!</p> http://stackoverflow.com/questions/376021/can-you-trap-these-radio-button-events-on-internet-explorer/481182#481182 0 Answer by CMPalmer for Can You Trap These Radio Button Events On Internet Explorer? CMPalmer 2009-01-26T20:19:03Z 2009-01-26T20:19:03Z <p>None of these approaches worked - we wound up using the checkbox jQuery plug-in that replaces the checkboxes and radio buttons with shiftable images. That means that we can control the view of the disabled controls.</p> <p>PITA but it works.</p> http://stackoverflow.com/questions/451070/can-i-fill-in-an-encypted-pdf-with-itextsharp/469716#469716 0 Answer by CMPalmer for Can I fill in an encypted PDF with iTextSharp? CMPalmer 2009-01-22T16:01:03Z 2009-01-22T16:01:03Z <p>Unless someone else chimes in, I'll assume the answer is "No"</p> <p>I wound up regenerating the PDF in an unencrypted form.</p> http://stackoverflow.com/questions/434940/printing-from-web-applications/467731#467731 2 Answer by CMPalmer for Printing from web applications CMPalmer 2009-01-22T01:05:55Z 2009-01-22T14:53:50Z <p>Creating documents from scratch with iTextSharp can be very time consuming. As an alternative, you can create (or reuse) PDF "template" documents by adding form fields to them (if necessary). The easiest way to do this is with a full version of Adobe Acrobat, but you can also add fillable form fields using nothing but iTextSharp.</p> <p>For example, for an award or diploma, you find, create, or modify a PDF containing all of the text, graphics, fancy borders and fonts for the document, then add a form field for the recipient's name. You might add other fields for dates, signature lines, type of award, etc.</p> <p>Then it's very easy to use iTextSharp from your web application to fill in the form, flatten it, and stream it back to the user.</p> <p>At the end of this post is a complete ASHX handler code example.</p> <p>Also remember that iTextSharp (or just iText) is also useful for combining PDF documents or pages from different documents. So, for an annual report that has a fixed design for a cover or explanation page but dynamically generated content, you can open the cover page, open a template page for the report, generate the dynamic content onto a blank area of the template, open the back page "boilerplate", then combine them all into a single document to return to the user.</p> <pre><code>using System; using System.Data; using System.Web; using System.Collections; using System.Web.Services; using System.Web.Services.Protocols; using System.Text; using iTextSharp; using iTextSharp.text; using iTextSharp.text.pdf; namespace iTextFormFillerDemo { [WebService(Namespace = "http://tempuri.org/")] [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] public class DemoForm : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "application/pdf"; //This line will force the user to either open or save the //file instead of it appearing on its own page - if you remove it, //the page will appear in the browser in the same window. context.Response.AddHeader("Content-Disposition", "attachment; filename=DemoForm_Filled.pdf"); FillForm(context.Response.OutputStream); context.Response.End(); } // Fills the form and pushes it out the output stream. private void FillForm(System.IO.Stream outputStream) { //Need to get the proper directory (dynamic path) for this file. //This is a filesystem reference, not a web/URL reference... //The PDF reader reads in the fillable form PdfReader reader = new PdfReader("C:/DemoForm_Fillable.pdf"); //The PDF stamper creates an editable working copy of the form from the reader //and associates it with the response output stream PdfStamper stamper = new PdfStamper(reader, outputStream); //The PDF has a single "form" consisting of AcroFields //Note that this is shorthand for writing out //stamper.AcroFields.SetField(...) for each set AcroFields form = stamper.AcroFields; //Set each of the text fields this way: SetField(name, value) form.SetField("txtFieldName", "Field Value"); form.SetField("txtAnotherFieldName", "AnotherField Value"); //Set the radio button fields using the names and string values: form.SetField("rbRadioButtons", "Yes"); //or "No" //Form flattening makes the form non-editable and saveable with the //form data filled in stamper.FormFlattening = true; //Closing the stamper flushes it out the output stream stamper.Close(); //We're done reading the file reader.Close(); } public bool IsReusable { get { return false; } } } } </code></pre> http://stackoverflow.com/questions/342774/c-streaming-webcam-video/345439#345439 5 Answer by CMPalmer for C# Streaming WebCam Video CMPalmer 2008-12-05T22:48:52Z 2009-01-20T17:43:32Z <p>If you want a "capture/streamer in a box" component, there are several out there as others have mentioned.</p> <p>If you want to get down to the low-level control over it all, you'll need to use DirectShow as thealliedhacker points out. The best way to use DirectShow in C# is through the <a href="http://directshownet.sourceforge.net/" rel="nofollow">DirectShow.Net</a> library - it wraps all of the DirectShow COM APIs and includes many useful shortcut functions for you.</p> <p>In addition to capturing and streaming, you can also do recording, audio and video format conversions, audio and video live filters, and a whole lot of stuff.</p> <p>Microsoft claims DirectShow is going away, but they have yet to release a new library or API that does everything that DirectShow provides. I suspect many of the latest things they have released are still DirectShow under the hood. Because of its status at Microsoft, there aren't a whole lot of books or references on it other than MSDN and what you can find on forums. Last year when we started a project using it, the best book on the subject was out of print and going for around $350 for a used copy!</p> <p>Here is the book: <a href="http://rads.stackoverflow.com/amzn/click/0735618216" rel="nofollow"><strong>Programming Microsoft DirectShow</strong></a>. You can get a new copy (as of the time of this posting) for $299 or a used copy for $149 at Amazon!</p> <p><img src="http://www.lmet.fr/www.lmet.fr/icons/Scans13/Big/9780/73/56/18/213.gif" alt="alt text" /></p> http://stackoverflow.com/questions/370013/jquery-delete-all-table-rows-except-first/370041#370041 0 Answer by CMPalmer for jQuery delete all table rows except first CMPalmer 2008-12-15T23:14:19Z 2008-12-15T23:14:19Z <p>Your selector doesn't need to be inside your remove.</p> <p>It should look something like:</p> <pre><code>$("#tableID tr:gt(0)").remove(); </code></pre> <p>Which means select every row except the first in the table with ID of tableID and remove them from the DOM.</p> http://stackoverflow.com/questions/361856/coloring-of-select-html-element-by-jquery/361865#361865 0 Answer by CMPalmer for Coloring of Select html element by jquery CMPalmer 2008-12-12T04:07:43Z 2008-12-12T04:07:43Z <p>ASP.Net decorates your element IDs when you are using master pages. It will put a lot of stuff up front, but leave your original ID at the end. Because of that, you can use a selector like this on ASP.Net server control renderings.</p> <pre><code>$("[id$=originalIdFromAspxPage]").attr... </code></pre> <p>The <code>$=</code> part means this will match any elements with an ID that ends with the ID you give it. </p> <p>It's not quite as efficient as a direct ID selector, but it works like a charm on ASP.Net pages.</p> http://stackoverflow.com/questions/356751/has-anyone-fixed-the-jquery-dialog-button-format-in-ie6-while-using-a-themeroller 0 Has anyone fixed the jQuery dialog button format in IE6 while using a Themeroller'ed theme? CMPalmer 2008-12-10T16:53:17Z 2008-12-10T17:13:03Z <p>I used Themeroller to generate an app theme and I am using jQuery and jQuery UI to create some modal dialog alerts. They work fine (and look great) on Firefox 2 and 3, but the buttons are shifted to the right on IE 6 and 7. It looks like it's being bitten by the IE margin bugs, but I wanted to see if there was an easy fix before digging into the Themeroller CSS, or worse, the jQuery generation code, to find a workaround.</p> <p>Here is what the box looks like in both Firefoxen:</p> <p><img src="http://farm4.static.flickr.com/3264/3097571133_6c67cae83b_o.png" alt="alt text" /></p> <p>And here is what the same box looks like in IE6/7:</p> <p><img src="http://farm4.static.flickr.com/3163/3098408266_ae31d474db_o.png" alt="alt text" /></p> <p>The jQuery UI demo page's buttons look a little better under IE, but they are semi-obscured under the resize bar. If no one here says "Oh yeah, here's how you fix it..." I'm going to have to put both of the CSS files side by side and figure out the difference.</p> <p>I see a <a href="http://stackoverflow.com/questions/43458/how-do-i-make-the-jquery-dialog-work-with-the-themeroller-themes">semi-related issue</a>, but the answer there doesn't apply to my problem (because my dialog container does have the ui-dialog class.</p> http://stackoverflow.com/questions/356751/has-anyone-fixed-the-jquery-dialog-button-format-in-ie6-while-using-a-themeroller/356813#356813 0 Answer by CMPalmer for Has anyone fixed the jQuery dialog button format in IE6 while using a Themeroller'ed theme? CMPalmer 2008-12-10T17:13:03Z 2008-12-10T17:13:03Z <p>I've found what seems to work by a little bit of trial and error. I would still be interested in a better comprehensive solution (and/or I need to point this out to the ThemeRoller team).</p> <p>I made this change to the <code>jquery-ui-themeroller.css</code>:</p> <pre><code>.ui-dialog-buttonpane { position: absolute; bottom: 0; left:0; /* Added this line and it makes the button pane anchor to the left */ width: 100%; text-align: left; border-top: 1px solid #707c5a; background: #faf7eb; } </code></pre> <p>I'm still doing some testing, but it seems to work on IE6/7 and FF2/3.</p> http://stackoverflow.com/questions/353187/is-there-any-way-to-modify-query-strings-without-breaking-an-asp-net-postback 0 Is there any way to modify query strings without breaking an ASP.Net postback? CMPalmer 2008-12-09T15:44:23Z 2008-12-09T17:06:22Z <p>From reading here and around the net, I'm close to assuming the answer is "no", but...</p> <p>Let's say I have an ASP.Net page that sometimes has a query string parameter. If the page has the query string parameter, I want to strip it off before, during, or after postback. The page already has a lot of client-side script (pure JavaScript and jQuery).</p> <p>As an example, say I load:</p> <pre><code>http://myPage.aspx?QS=ABC </code></pre> <p>The QS parameter is necessary to control what appears on the page when it first loads and is set by the page that "calls" it. <code>myPage.aspx</code> has form elements that need to be filled in and has a submit button that does a postback. When the page completes the postback, I need to returned URL to be:</p> <pre><code>http://myPage.aspx </code></pre> <p>in order to avoid the client-side code that is called when the query string is present. In other words, after a submit I don't want the client side actions associated with the query string parameter to fire. I know I could append the form contents to the URL as query string parameters themselves and just redirect to the new URL and avoid the submit/postback, but that will require a lot more type checking on the codebehind to avoid bad data and casual spoofing. I supposed I could also set a hidden field in the codebehind and look at it along with the query string to cancel the client-side behavior if I am coming back from the postback, but that still leaves the query string intact basically forever and I want to get rid of it after the initial page load.</p> <p>Any ideas or best practices? </p> <p>PS - Is there anything I can do with the Form.Action property that won't break the postback behavior?</p> http://stackoverflow.com/questions/261845/webforms-and-jquery-how-to-match-the-ids/342508#342508 2 Answer by CMPalmer for Webforms and jQuery, how to match the ID's? CMPalmer 2008-12-05T00:15:39Z 2008-12-05T00:28:20Z <p>The easiest way I've found is just to match on the end of the mangled ID for most controls. The exceptions that Know of are radiobutton lists and checkbox lists - you have to be a little trickier with them.</p> <p>But if you have this in your .aspx page:</p> <pre><code>&lt;asp:TextBox ID="txtExample" runat="server" /&gt; </code></pre> <p>Then your jQuery can easily find that control, even if it's mangled by the master page rendering, like this:</p> <pre><code>$("[id$=txtExample]") </code></pre> <p>The <code>$=</code> operator matches the end of the string and the name mangling is always on the front. Once you've done that, you can get the actual mangled ID like this:</p> <pre><code>$("[id$=txtExample]").attr("id") </code></pre> <p>and then parse that anyway you see fit. </p> <p>EDIT: This is an easy way, but it may be more of a performance hit than just giving each control a class the same as its old ID.</p> <p>See this article that Jeff posted a link to on another jQuery optimization question:</p> <p><strong><a href="http://www.componenthouse.com/article-19" rel="nofollow">jQuery: Performance Analysis of Selectors</a></strong></p> http://stackoverflow.com/questions/341900/how-can-i-determine-the-element-type-of-a-matched-element-in-jquery/341919#341919 4 Answer by CMPalmer for How can I determine the element type of a matched element in jQuery? CMPalmer 2008-12-04T20:24:17Z 2008-12-04T20:24:17Z <p>First time I've answered my own question. After a little more experimentation:</p> <pre><code>$("[id$=" + endOfIdToMatch + "]").each(function () { alert($(this).attr(tagName)); }); </code></pre> <p>works!</p> http://stackoverflow.com/questions/297037/what-tricks-do-you-use-to-get-yourself-in-the-zone/297477#297477 104 Answer by CMPalmer for What tricks do you use to get yourself "in the zone"? CMPalmer 2008-11-18T00:37:40Z 2008-12-04T10:01:07Z <p>I started thinking about new ways to get into the zone after watching this TED conference video by Mihaly Csikszentmihalyi (pronounced "Chick-sent-me-high-E"):</p> <p><a href="http://www.ted.com/index.php/talks/mihaly_csikszentmihalyi_on_flow.html" rel="nofollow"><strong>Mihaly Csikszentmihalyi: Creativity, fulfillment and flow</strong></a></p> <p>One of the results of his study is a graph that compares the challenge of an activity vs. the perceived skill that you have in doing the activity. The intersections of the two fall into mental state zones with Flow (or "in the zone") in the upper right where a high challenge is being met with a high skill level. If you think about the things you do every day, it's pretty easy to figure out where they should be placed on the graph and it's pretty perceptive in figuring out your mental attitude toward those tasks.</p> <p>I printed out my version of his diagram and I try to mentally graph my tasks onto the chart. Then I try to find ways to alter the tasks to shift them toward the upper right (or at least the middle).</p> <p><img src="http://farm4.static.flickr.com/3015/3039778526_e5637e8d97.jpg" alt="alt text" /></p> <p><a href="http://flickr.com/photos/cmpalmer/3039778526/sizes/o/" rel="nofollow">Big Version</a></p> <p>I'm reading his book <strong><a href="http://rads.stackoverflow.com/amzn/click/0060920432" rel="nofollow">FLOW: The Psychology of Optimal Experience</a></strong> now and it is great as well. It is providing a lot of insights into my personal behaviors that I have hypothesized about and it's interesting to see that worldwide research supports them.</p> <p>I'll find myself in the zone (or the "Flow") at various times during a programming project, usually when I concentrate enough to start a new part of the project where I have to really apply my skills or research and learn new skills. Once that part is over and the drudgery of repeating and refactoring code, documenting, testing, etc. start it's much harder. </p> <p>Unfortunately, by Csikszentmihalyi's definitions, reading the web, reading books, talking with friends, and participating in things like SO are also "flow" activities, so they are particularly easy to get distracted by and locked in for a long period of time.</p> <p>Because of that, <a href="http://www.proginosko.com/leechblock.html" rel="nofollow">Leechblock</a> has been my biggest help in staying on task. I haven't had to add SO to my daily blocks yet, but I do have a special category for it where I can do a "lockdown" on it if I get too distracted.</p> http://stackoverflow.com/questions/336073/css-basic-layout-question-keeping-nested-elements-inside-each-other/337490#337490 1 Answer by CMPalmer for CSS: Basic layout question - keeping nested elements inside each other. CMPalmer 2008-12-03T15:26:46Z 2008-12-03T15:26:46Z <p>I can't beat the answers that have been posted, but I do have a good tip for helping to diagnose layout problems without screwing up your markup.</p> <p>Add this section to the bottom of your CSS file and keep it commented out when you don't need it:</p> <pre><code>div { border-width: thin !important; border-color: Orange !important; border-style: solid !important; } label, span, /* whatever else you might want to see */ { border-width: thin !important; border-color: Blue !important; border-style: solid !important; } </code></pre> <p>Often I'll find that a layout that actually works (particularly one that uses the "add a <code>&lt;br&gt;</code> with a <code>clear: both</code> style) will actually not be nesting <code>&lt;div&gt;</code>'s properly but someone has tweaked the CSS so that it works by voodoo. Actually looking at the borders of your elements helps a lot and doing this in CSS means you don't have to touch your real markup or your main CSS in order to turn the borders on for debugging.</p> http://stackoverflow.com/questions/331963/how-can-i-switch-a-text-box-for-a-label-div-or-span-using-jquery 3 How can I switch a text box for a <label>, <div>, or <span> using jQuery? CMPalmer 2008-12-01T19:46:09Z 2008-12-01T21:22:08Z <p>I'm trying to "single source" a form page which can be in edit mode or view mode. For various reasons, this isn't using the ASP.Net FormView or DetailsView controls.</p> <p>Since there is no way to disable a textbox without turning its contents gray (well, we could "eat" all of the keystrokes into it, but that isn't very elegant either) and disabling a dropdown list or listbox isn't what we want, our first try was to duplicate all of the form input controls with a label and use CSS to select which ones are visible depending on the mode of the form. That works, but it's ugly to edit and the code-behind has to populate both controls every time.</p> <p>We could control the visibility in the code-behind to avoid filling both controls, but we still have to add them both to the form.</p> <p>So I had the idea to use jQuery to swap out the input controls for <code>&lt;label&gt;</code>, <code>&lt;div&gt;</code>, or <code>&lt;span&gt;</code> elements. This works, to some extent, by creating the appropriate selectors and using the <code>replace()</code> jQuery method to swap out the elements dynamically.</p> <p>The problem is that I not only need to copy the contents, but also the styles, attributes, and sizing of the original input controls (at this point we're only talking about textboxes - we have a different solution for dropdown lists and listboxes). </p> <p>Brute force should work - "backup" all of the attributes of the input control, create the new "read only" element, then replace the input control with the new element. What I'm looking for is something simpler.</p> <p>Succinctly, using jQuery, what is the best way to replace a textbox with a label and have the label have the same contents and appear in the same location and style as the textbox?</p> <p>Here is what I have so far:</p> <pre><code>$(":text").each( function() { var oldClass = $(this).attr("class"); var oldId = $(this).attr("id"); var oldHeight = $(this).outerHeight(); var oldWidth = $(this).outerWidth(); var oldStyle = $(this).attr("style"); $(this).replaceWith("&lt;div id='" + oldId + "'&gt;" + $(this).val() + "&lt;/div&gt;"); $("div#" + oldId).attr("class", oldClass); $("div#" + oldId).attr("style", oldStyle); $("div#" + oldId).width(oldWidth); $("div#" + oldId).height(oldHeight); $("div#" + oldId).css("display", "inline-block"); }); </code></pre> http://stackoverflow.com/questions/319441/the-fastest-way-to-learn-c/319483#319483 6 Answer by CMPalmer for The fastest way to learn C#? CMPalmer 2008-11-26T01:26:35Z 2008-11-26T01:45:42Z <p>Pretty much the only resource I turn to when learning a new technology is a good book (and <a href="http://www.google.com/search?q=learning+c%23&amp;sourceid=navclient-ff&amp;ie=UTF-8&amp;rlz=1B3GGGL_enUS216US216" rel="nofollow">Google</a> of course). I don't work for O'Reilly, but for the most part, I find their books the most useful by far. Much better than "Learn Brain Surgery in 24 Hours!" or "Compiler Design for Dummies" type books. I also hate 900 page books that consist of 700 pages of code listings and screen shots.</p> <p>Most of the O'Reilly books are well written, no glitz, no color, and no rehashing of the reference materials (and distinctively cool woodcut animal drawings).</p> <p>Therefore, I would suggest <strong><a href="http://oreilly.com/catalog/9780596521066/?CMP=AFC-ak_book&amp;ATT=Learning+C%23+3.0" rel="nofollow">Learning C# 3.0</a></strong> or <strong><a href="http://oreilly.com/catalog/9780596527433/?CMP=AFC-ak_book&amp;ATT=Programming+C%23+3.0" rel="nofollow">Programming C# 3.0</a></strong>. Or, if you want (or need) a beginner book (excellently written, but really for someone with little programming experience and it has glitzy drawings color and less text overall), <strong><a href="http://oreilly.com/catalog/9780596514822/index.html" rel="nofollow">Head First C#</a></strong>. While some things about the Head First series books bother me, I've actually learned quite a bit from them.</p> <p><strong>NOTE:</strong> These links go straight to O'Reilly's pages and aren't associate links of any kind...</p> <p><img src="http://oreilly.com/catalog/covers/9780596521066_cat.gif" alt="alt text" /> <img src="http://oreilly.com/catalog/covers/9780596527433_cat.gif" alt="alt text" /> <img src="http://oreilly.com/catalog/covers/9780596514822_cat.gif" alt="alt text" /></p> http://stackoverflow.com/questions/215046/connecting-web-parts-in-sharepoint/283457#283457 Comment by CMPalmer on connecting web parts in sharepoint CMPalmer 2009-10-29T22:10:13Z 2009-10-29T22:10:13Z Great article - this one guided me through a similar problem! http://stackoverflow.com/questions/1632232/using-jquery-to-display-words-consecutively/1632402#1632402 Comment by CMPalmer on using jquery to display words consecutively CMPalmer 2009-10-27T20:53:08Z 2009-10-27T20:53:08Z This one works quite well... http://stackoverflow.com/questions/1632232/using-jquery-to-display-words-consecutively/1632250#1632250 Comment by CMPalmer on using jquery to display words consecutively CMPalmer 2009-10-27T20:23:42Z 2009-10-27T20:23:42Z The Timeout code runs asynchronously, so all of the words get their class toggled at the same time - it doesn't wait for one to get processed before doing the next one... http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/498181#498181 Comment by CMPalmer on What non-programming books should programmers read? CMPalmer 2009-08-24T15:51:29Z 2009-08-24T15:51:29Z This is also one of the best books about cognitive psychology and AI that I've ever read. Before you think I'm crazy, Understanding Comics is mostly about how we look at minimalist art and transform it into rich experiences and how we can look at static shots and understand the flow of time, character motivation, and causality. Truly an amazing book. http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/38216#38216 Comment by CMPalmer on What non-programming books should programmers read? CMPalmer 2009-08-24T15:46:41Z 2009-08-24T15:46:41Z Put more simply, the book says that programmers most often write programs that are usable primarily by other programmers (hence the title). It presents methodologies to ensure that programs are written to the domain of the users, not the developers. Great book. http://stackoverflow.com/questions/1054672/every-language-was-created-for-a-specific-purpose/1054782#1054782 Comment by CMPalmer on "Every language was created for a specific purpose" CMPalmer 2009-07-16T18:41:28Z 2009-07-16T18:41:28Z Should be - Objective C: Developed to have an object oriented C for Next computers before C++ was invented/adopted. Pre-dates iPhones by well over 20 years. http://stackoverflow.com/questions/1070502/improving-the-web/1070625#1070625 Comment by CMPalmer on Improving The Web CMPalmer 2009-07-01T18:43:49Z 2009-07-01T18:43:49Z Actually that is a valid concern. Not just IE6, although that is the worst culprit, but the fact that most large-scale sites (commercial ones in particular) have to be coded and styled to the lowest common denominator or at least have to degrade gracefully (&quot;Use a real browser, loser!&quot; doesn't cut it if you are trying to sell something). This limits widespread use of innovative technologies. http://stackoverflow.com/questions/1031466/evaluate-dice-rolling-notation-strings Comment by CMPalmer on Evaluate dice rolling notation strings CMPalmer 2009-06-23T16:26:03Z 2009-06-23T16:26:03Z Onorio is right - standard RPG notation would be that 4d12 means d12 + d12 + d12 + d12, but 4*d12 would be 4 * d12. http://stackoverflow.com/questions/1019070/querying-core-data-with-predicates-iphone Comment by CMPalmer on Querying Core Data with Predicates - iPhone CMPalmer 2009-06-19T17:53:53Z 2009-06-19T17:53:53Z You can edit your post to format the code correctly... http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/408120#408120 Comment by CMPalmer on What's your most controversial programming opinion? CMPalmer 2009-06-11T14:49:58Z 2009-06-11T14:49:58Z That's one of my favorite books. Should be a must read - particularly for programmers who think they are web designers... http://stackoverflow.com/questions/687762/which-orm-is-the-best-when-using-stored-procedures Comment by CMPalmer on Which ORM is the best when using Stored Procedures CMPalmer 2009-06-01T20:08:11Z 2009-06-01T20:08:11Z I'm looking for similar solutions since our new project tech lead is <i>insisting</i> that all code-to-database interactions be through stored procedures. Every CRUD operation. Every query. Everything. But, he wants to have a completely generic DAL :-) http://stackoverflow.com/questions/738607/ensure-that-asp-net-3-5-framework-is-installed-on-windows-server-2003-64-bit/740548#740548 Comment by CMPalmer on Ensure that ASP.NET 3.5 Framework is installed on Windows Server 2003 64-bit CMPalmer 2009-05-18T18:17:22Z 2009-05-18T18:17:22Z Is that link correct? It refers to .NET 1.1 and 2.0... http://stackoverflow.com/questions/734824/anyone-have-ideas-for-solving-the-n-items-remaining-problem-on-internet-explore/734847#734847 Comment by CMPalmer on Anyone have ideas for solving the "n items remaining" problem on Internet Explorer? CMPalmer 2009-04-20T15:44:20Z 2009-04-20T15:44:20Z This was a hard decision on awarding the &quot;answer&quot; - there was a lot of good information in each answer and this one wasn't exactly it, but it led me in the right direction. http://stackoverflow.com/questions/734824/anyone-have-ideas-for-solving-the-n-items-remaining-problem-on-internet-explore/735398#735398 Comment by CMPalmer on Anyone have ideas for solving the "n items remaining" problem on Internet Explorer? CMPalmer 2009-04-09T20:11:03Z 2009-04-09T20:11:03Z Thanks. By the way, I've seen posts saying that the HTC caching problem also occurs in IE8, so they still haven't addressed it. http://stackoverflow.com/questions/734824/anyone-have-ideas-for-solving-the-n-items-remaining-problem-on-internet-explore/735398#735398 Comment by CMPalmer on Anyone have ideas for solving the "n items remaining" problem on Internet Explorer? CMPalmer 2009-04-09T18:38:37Z 2009-04-09T18:38:37Z But what if no HTC files are involved?