System error &Hc0000005& (visual basic internal compiler error)

Asked By 0 points N/A Posted on -
qa-featured

Hi Techyv buddies!

I am having some trouble in opening WCF service application.

Every time I open it I end up receiving a system error.

The error is this:

“System Error &Hc0000005& (Visual Basic internal compiler error)”

Can anyone help me solve this problem? I would be very thankful if this is solved.

Thank you!

SHARE
Answered By 10 points N/A #147046

System error &Hc0000005& (visual basic internal compiler error)

qa-featured

Hello Kenny,

To resolve the issue, try use the following workaround:

  • In Visual Studio .NET, you will need to initialize a new console application with the use of  Visual Basic .NET.
  • Module1 is created will be created immediately the console application starts.
  • You will need to add the following code to the Main procedure in Module1:
  •  Dim a() As Integer
    'Add a handler to the event of the array.
    AddHandler a.e, AddressOf Main
    RemoveHandler a.e, AddressOf Main

  • After that go to the Build menu, and then click Build Solution.
  • Locate the Output window, and look for the following message:

    Performing main compilation

    However, the compilation is not completed. The compiler stops responding and does not show the errors in the code.

  • You will need to go to the Build menu, and then click Cancel to end the compilation.
  • After that you will close the IDE.

Regards,

Carl

Related Questions