Click on this icon to open the XML page.Tom Van Gaever - Blog
Search:   

Visual C# Default Keybindings Cheat Sheet 
Wednesday, September 26, 2007, 08:40
Posted by Administrator
If you can’t tell, I love cheat sheets. I’ve come across another excellent one.

This one is produced by Microsoft and contains the default keybindings for Visual C#.

You can view the PDF here .


add comment ( 4 views )   |  permalink   |  related link   |   ( 3 / 458 )
LinkedIn.com 
Sunday, September 16, 2007, 10:03
Posted by Administrator
View Tom Van Gaever's profile on LinkedIn
add comment ( 4 views )   |  permalink   |   ( 3 / 417 )
Lifted, Pixar’s latest short film 
Sunday, September 16, 2007, 09:44
Posted by Administrator



Lifted is Pixar’s latest short film that was released theatrically with the movie Ratatouille.
add comment ( 4 views )   |  permalink   |   ( 3 / 553 )
Which file extension are you? 
Sunday, September 16, 2007, 09:24
Posted by Administrator
Which file extension are you?



Which Programming Language Are You?



Which OS are you?


add comment ( 4 views )   |  permalink   |   ( 3 / 573 )
CSS Min-Height In IE6 and all Browsers! 
Friday, September 14, 2007, 10:41
Posted by Administrator
While searching after a method to assign a min-height on IE6 I found this little trick:


#wrapper{
min-height:500px;
height:auto !important;
height:500px;
}


Example:


<div id="header">HEADER</div>
<div id="wrapper">
<p>content</p>
</div>
<div id="footer">FOOTER</div>


that's all ;)


add comment ( 1 view )   |  permalink   |   ( 3 / 544 )

<<First <Back | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | Next> Last>>