I had a working report in Access 2007. It sourced a query called Rosters. The report grouped by several course-related fields, and then in the detail section, it printed names and student IDs. The effect was a stack of printable student rosters. Then I needed to change the Rosters query to do a little filtering. …
Aside from the ‘goddamn’, this article title may sound like a good movie name. Anyway, it turns out that IE has a hidden cache of temporary internet files (TIFs). Big deal, right? Everyone and their grandmother knows that Windows/IE/MS-products-in-general and even software-in-general have these caches of files for whatever reason – sometimes good, sometimes not …
Weirdest thing: if you create a stylesheet that is linked to from one of your pages in dreamweaver and it contains the line .popup {} int it, dW dies while trying to start up. Great parlour trick!
I think I found a bug in Error Tracker 1.06, a plugin for Mint. I came across this one because even though I had taken measures to redirect a certain incorrect URL that was apparently getting a lot of hits, the hit count on that URL continued to climb. I ran my own queries against …
Here’s the current bug list for Mango that I’ll be working on over the next week or two. After this list is complete, the initial release will go online. Nightly backups of data will be required just in case I miss something which causes the database to become corrupted. registration double what do i do? …
I was right. If the server sends a response and the ‘Content-Type’ attribute is ‘text/xml’, you must send at least a root node so the xml parser that is built into Mozilla’s XMLHTTPRequest object doesn’t cak and give you a ‘no element found’ Javascript error. This could be an issue for those of us who …
I think I figured it out. I think that the issue crops up if your server sends a response header of ‘Content-Type’ set to ‘text/xml’ and you send no content. The XMLHTTPRequest object then says ‘oh it’s xml? fine – i’ll just PARSE THIS and store it in the reponseXML property.’ At that point, the …
Firebug 0.4.1 and 0.4.0 suffer from a very peculiar bug. If you create an object with a property called ‘-URL’, you can not use console.log to see the value of the property using the console. Steps to reproduce: In the console, type x = {‘-URL’ : ‘foo.pdf’, ‘-Size’ : 100}; Now type x Now press …