In vb6 you could use "For each meh in Forms" ..etc etc, but in .NET this is no 'Forms'. What replaced it or is there a different way to do it? Thanks.
In vb6 you could use "For each meh in Forms" ..etc etc, but in .NET this is no 'Forms'. What replaced it or is there a different way to do it? Thanks.
You now have to create a class that holds all this information for you. There is no forms collection class in .Net.
http://msdn.microsoft.com/library/de...albasicnet.asp
Ah, OK, got that working, thanks.