July 2007


Uncategorized and Blogging31 Jul 2007 11:08 pm

A friend of mine is a director and he recently directed 21 PSAs for the moral code, The Way To Happiness. His PSAs are a work of art, and I’m amazed by a few of them. Very nicely put. Here’s the first few:

Click here to view other Public Service Announcements

Click here to view other Public Service Announcements

Click here to view other Public Service Announcements

Uncategorized27 Jul 2007 11:35 pm

Going from Classic ASP to ASP.NET using VB.NET you can run into conversion problems. Some of these are:

Abs() - This function requires importing the namespace System.Math.

At the top of your code put this: Imports System.Math

A float is now a double.

Use it like Dim i as Double, etc.