VB.NET Project

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am working on a project that utilizes a lot of forms. I have one form that
is not special in any way, but I keep getting this message when I try to test
it out:

Parser Error
Description: An error occurred during the parsing of a resource required to
service this request. Please review the following specific parse error
details and modify your source file appropriately.

Parser Error Message: The ID 'Form1' is already used by another control.

Source Error:

Theo ther forms in the project are very similar to this one, but they don't
have this problem.

I cannot see anything in the code that would lead to this.

Can anyone help with this?
 
Are you sure that there is no other form which has the filename and class
name equal to "Forms1"
Make this sure by either searching for Form1 from the IDE or/and form
Windows Explorer.

HTH
rawCoder
 
NEWBIE in ABQ said:
Parser Error Message: The ID 'Form1' is already used by another control.

I cannot see anything in the code that would lead to this.

Can anyone help with this?

Unless we all look at your code, it would be rather difficult to help.
I'd suggest to open all documents, expand all regions, and do a global
Find on the word Form1 and see if it is used somewhere where it should
not be....

LFS
 
Back
Top