Google have released a new version of their Toolbar. This version includes a favourites folder that is stored on the net. Since Microsoft has not managed to have their favourites work in Internet Explorer reliably for some time, this might be a great thing.

News.Com.Au has an article on great driving songs. From the article ‘When Bruce sings, “Tramps like us, baby we were born to run . . .”, well, you might be stalled in the traffic at the lights, but somewhere in your soul you’ll always be free and clear out on the open road. ‘. What more could be said?

I solved the problem with VB.NET. It was rather simple… I defined a structure like :-
Private structure MyStruct
dim Col as collection
end structure

Normally to use this I need to do something like :-
Dim MyData as new MyStruct
But this was not working properly… What I also needed to do was say
MyData.COL as new collection
Now this works…