|
-
Feb 26th, 2003, 09:54 AM
#1
Thread Starter
Member
[RESOLVED]Conflicting form names
Hi
My VB project contains a form(dialog) called dlgID. Now everytime I open the project, it gives me an error saying "Conflicting names were found in dlgID. The name 'dlgID' will be used".
I also noticed that the code which invokes dlgID, instead of
dlgID.show
it always remains
dlgiD.show
(Notice the case)
Why is this happening and how do I resolve it?
Thanks,
Sarah
Last edited by sarahmapg; Feb 26th, 2003 at 10:02 AM.
-
Feb 26th, 2003, 09:59 AM
#2
Open your form in notepad. There's two lines that store your form's name & they are:
Begin VB.Form [form name]
....
Attribute VB_Name = "[form name]"
e.g.:
Begin VB.Form dlgXYZ
....
Attribute VB_Name = "dlgXYZ"
-
Feb 26th, 2003, 10:01 AM
#3
Thread Starter
Member
-
Jun 24th, 2007, 12:43 PM
#4
Member
Re: [RESOLVED]Conflicting form names

I, too, had this problem and it was driving me nuts
THANK YOU, THANK YOU for your great help. Now my project loads without the "conflicting names" error.
 Originally Posted by axion_sa
Open your form in notepad. There's two lines that store your form's name & they are:
Begin VB.Form [form name]
....
Attribute VB_Name = "[form name]"
e.g.:
Begin VB.Form dlgXYZ
....
Attribute VB_Name = "dlgXYZ"
-
Jun 16th, 2010, 09:28 AM
#5
New Member
Re: [RESOLVED]Conflicting form names
WOW!
THANK YOU! THANK YOU!
I thought my boss would kill me because of this error.
Then you saved my life!
It really worked!
THANK YOU! THANK YOU!
-
Jan 27th, 2013, 12:09 PM
#6
New Member
Re: [RESOLVED]Conflicting form names
Thank you so much. Straightforward solution.
-
May 28th, 2014, 12:06 AM
#7
Registered User
Re: [RESOLVED]Conflicting form names
Thanks axion_sa..It Solved my error.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|