I have upgrade a VB6 project with the upgrade wizard to VB.NET.
I think I am in a vicious circle now:
There is one user control in my main form that is accessed from many other forms.
The IDE tells me that it shows the maximum amount of errors (102), and those shown are all like:
ucPage is not a member of prjMyProject.frmMain
ucPage is not a member of prjMyProject.frmMain
ucPage is not a member of prjMyProject.frmMain
EB1 is not a member of prjMyProject.frmMain
EB1 is not a member of prjMyProject.frmMain
I need to replace EB1 with a standard control, but I can not load the frmMain in the designer because the IDE is still mocking about the missing ucPage control on the form.
And the user control "ucPage" is not available in the toolbox because I have not been able to compile the project yet, so I can not even put it on my form. This is a vicious circle, I think.
Does anybody have any suggestions on how to resolve it?