Tag Archives: Vb

Run time error “430”

Recently, the use of VB6.0, encountered a lot of trouble problems, is about. DLL problems. After the source program is introduced into the machine, you need to register the.DLL files used. But sometimes there will be some changes so that the files registered in the system cannot adapt to the changed environment, then Runtime Error 430
Class dose not support automation or does not support expected interface will occur. Error message.
Solution: Manually unregister the original.DLL file from the system with Regsvr32/U /s XXx. DLL and re-register it with RegSVr32 /s XXX. DLL.
This version inconsistency often occurs when a program is introduced to a native. The best way is to re-register all the files in the original reference.

Runtime error 5 Invalid procedure call or argument

Runtime error 5 Invalid procedure call or argument

VB compiler must have VB runtime support, most VB programs are not pure green software, can not directly copy the compiled program to the operating system without VB operating environment to run. The solution is to package the installer with VB and install it once on that computer.
Label: Runtime Error, VB