Monday, April 8, 2013

How to Fix Runtime Error 424 in Visual Basic 6.0


1. Find the incorrect reference variable by appearance. For example, an Object Variable uses a dot (Hello.value=1) and a Normal Variable does not. The correct variable type needs to be used for the correct situation.
2. Change the incorrect variable to fit the situation. For example, a shared variable can be used for a variety of instances within a class while a local variable will be used independently for the instance it was created.
3. Run and test the program by connecting to the Internet, click 'Debug' and then 'Start Debugging.' This will run the program.
4. Repeat Steps 1 through 3 if Error 424 still appears.