Question using VB 2010, with an VB 2008 guide

kasame10

New member
Joined
Jan 3, 2012
Messages
3
Programming Experience
Beginner
Well the problem is in this line of code: AddHandler Browser.ProgressChanged, AddressOf Loading
It says that Loading is not declared or something, it says same about done. It is for an webbrowser I am making. Got it from a guide.
 
That is nothing whatsoever to do with the difference between VB 2010 and 2008. It means that you are specifying a method to handle an event without having declared the method. You'd get the same error message in every version of VB.NET if you did that. If you want to handle an event with a method then you have to have the method.
 
Back
Top