Quote:
now that you can create class files pretty much anywhere in VB code, what would be the best way to organise them? for example, in form1.vb you have the form1 class, but you could also have several other classes in that file as well. so would it be best to have any form classes in their own file, and any other classes in class files?
Personally I would leave the form class in a .vb file on it's own, and then have another .vb file for each other class. I would however consider have one .vb file for all classes in a specific namespace (see Canders example).