Archive for July, 2007
This looks nice for inline forms - yet another lightbox idea
Wednesday, July 25th, 2007Useful JavaScript tit bits - Googlie Spell and Enhanced lightbox
Wednesday, July 25th, 2007Time for a new computer?
Tuesday, July 24th, 2007Useful for .NET caching
Tuesday, July 24th, 2007Fix those CSS link problems and run in the root when using the built in VS web server
Tuesday, July 24th, 2007Adding a link using JavaScript
Tuesday, July 24th, 2007function addLink() {
var closeP = document.createElement("p");
closeP.appendChild(document.createTextNode("Alternatively, ");
var closeLink = document.createElement("a");
closeLink.href = "#";
closeLink.onclick = function() { window.close(); };
closeLink.appendChild(document.createTextNode("Close window"));
closeP.appendChild(closeLink);
var parentEl = document.getElementById("container"); // this should be the ID of the element this link should be appended to
parentEl.appendChild(closeP);
}
if (window.addEventListener) { window.addEventListener("load", addLink, false); }
else if (window.attachEvent) { window.attachEvent("onload", addLink); }
Just in case you forget about Arrays in c# - idiot!
Monday, July 23rd, 2007Installing and using SVN on Windows
Monday, July 23rd, 2007I am moving from CVS to SVN:
Backing up databases SQL Server 2005
Sunday, July 22nd, 2007Had a problem with a saving to a different location, this was useful:
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=733113&SiteID=1