Error "Friend Overloads Sub InitVars()' has multiple definitions with identical signa

adi2015

Member
Joined
Mar 4, 2015
Messages
17
Programming Experience
3-5
Error "Friend Overloads Sub InitVars()' has multiple definitions with identical signa

Hi,

I am using visual studio 2013 to build my database Last day I was working on my form with 6 tabs total. From time to time I haved copied some textbox or combobox from 1 to my 6 or 7 tab. I was to lasy to create some blank textbox or combobox and that's why I did it. Suddenly I get this error

'Friend Overloads Sub InitVars()' has multiple definitions with identical signatures.

'Friend Overloads Sub InitVars(initTable As Boolean)' has multiple definitions with identical signatures.

'Friend Property Connection As System.Data.SqlClient.SqlConnection' has multiple definitions with identical signatures.

errors.jpg
and I can't open ANY form from my database! I suddenly have 102 errors?!


Can anyone help me with this please?

Greetings!

Adi
 
Did you double-click on any of the error messages? Did doing so take you to a location in code? Was there indeed multiple overloads of the specified message with the same signature, i.e. multiple methods with the same name and the same number and types of parameters? At the very least, you can do a Find In Files search for those methods to see where in the code the issue is.
 
Back
Top