VB.NET Project

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?
 
R

rawCoder

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
 
L

Larry Serflaten

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top