I am getting this error when i try to show a form with an webbrowser in it.
ActiveX control \'8856f961-340a-11d0-a96b-00c04fd705a2\' cannot be instantiated becau
Assuming that you are not using the application framework, you need to decorate your Sub Main with the STAThread attribute.
Sub Main
For example:
_ Public Sub Main()
VB Applications that use the application framework do not have to worry about this attribute since the compiler will apply it automatically.