November 11, 2003

Skip Navigation LinksIrocon > Blog > 2003 > November, 2003 > November 11, 2003

Preserving Properties in New instance of class

Great post by Edneeis on Gotdotnet VB.NET forum------------------------------------------------------------------The question was: how do I initialize an instance of a class and have all the values and properties from the old class in the new classA: You can implement ICloneable and give your object its own MemberwiseClone implemention which is generally protected in scope. You could also use...Last Updated:Thursday, September 02, 2010By:alfero#

3 Ways of Passing Data Between Forms in VB.NET

This project by drewman48 gives a simple example of one-way passing of data from one form to another. This project takes advantage of shadowing the Show() and ShowDialog() methods as well as an Overload of New().the sample project can be downloaded here. Last Updated:Thursday, September 02, 2010By:alfero#

GotDotNet Samples feed

Good for including on my site.http://www.gotdotnet.com/community/resources/rss.aspx?feed=Sample Last Updated:Thursday, September 02, 2010By:alferoSource#

Great information here

Some good information for VB programmershttp://www.panopticoncentral.net/ Last Updated:Thursday, September 02, 2010By:alferoSource#

Build your own RSS Aggregator

This application was designed in C#.I'll check if there is a VB.NET version. I understand it uses a rssreader class which should be usable in VBI'll look more into thishttp://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnexxml/html/xml02172003.asp Last Updated:Thursday, September 02, 2010By:alferoSource#

Using the Ukoln RSS Express Lite for MSDN RSS feeds

http://rssxpress.ukoln.ac.uk/lite/viewer/-------------------------------------------------------------------------<script src="http://rssxpress.ukoln.ac.uk/lite/viewer/?rss=http%3A%2F%2Fmsdn.microsoft.com%2Fvbasic%2Frss.xml"></script> <noscript><a href="http://rssxpress.ukoln.ac.uk/lite/viewer/?rss=http%3A%2F%2Fmsdn.microsoft.com%2Fvbasic%2Frss.xml">View </a> </noscript>...Last Updated:Thursday, September 02, 2010By:alferoSource#