Archive for February, 2007

.NET training

Here are the notes I made during my training for Microsoft certification 70-536 and 70-528 (MSTS/MSAD/MSSD).

More »

Notes on 70-536 Application Developement Foundation

Notes related to Exam 70-536, Microsoft .NET Framework 2.0 – Application Developement Foundation[note title=Diagnostics nakijken!!!] [/note] _caspol.exe_ command-line tool to modify security permissions, permission sets, and code groups for an assembly at the machine, user, and enterprise policy levels. _CompareInfo_ resides inside _CultureInfo_. Therefor, to create a _CompareInfo_ the following code can be used: [code [...]

More »

Reflection in javascript

It’s a little known fact that javascript actually supports a type of reflection.With the for…in statement it’s possible to traverse items in an array, but also to traverse properties in an object. using the following snippet gives you an alert of the available properties in object var msg = “”; for (var item in _object_) [...]

More »

Display transparant PNGs in Internet Explorer

Here’s a solution to the problem of Internet Explorer prior to version 7 not displaying PNGs with alpha channels properly.I bumpt into this problem when I tried to display PNGs as background images to a div, so the code below targets this specific situation. First, create a div to hold the image and make sure [...]

More »

Enterprise Manager script error

When clicking on a database is the Microsoft Enterprise Manager (SQL-server 2000) I regularly get an Internet Explorer Script Error. An error has occurred in the script on this page. Line: 307 Char: 2 Error: Unspecified error. Code: 0 URL: res://C:\\Program Files\\Microsoft SQL Server\\80 Tools\\Binn\\Resources\\1033\\sqlmmc.rll/Tabs.html Do you want to continue running scripts on this page? [...]

More »

.NET 2.0 poster

Microsoft .NET Framework 2.0 class diagram[url=/files/media/DotNetFx20Poster.jpg][/url] Click for larger image (1.4MB)

More »

Events on dynamic loaded UserControls

Loading UserControls dynamically, in for instance the Page_Load routine and consuming the events generated by controls on the UserControl takes some preparation.The most important thing to remember, at least for me as I seem to forget this over and over again, is the fact that dynamically loaded UserControls need a unique ID. If you don’t [...]

More »