Type 'XXX' is not defined on line 16707566

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

Guest

I upgraded by VS.NET to v2003 and I'm now attempting to upgrade all my project files. I have a solution with several projects. In project A is a interface called IForm which has 2 events: DBOperationComplete and DBOperationFailed. In project B is a Windows form which implements IForm. The IForm namespace is 'UI.Base'

I'm getting a build error "Type 'UI.Base.IForm.DBOperationFailedEventHandler' is not defined." The odd thing is that the line the error comes from is 16707566.

I've check my namespace, created new project files, new Windows App classes and recreated the entire project that is having the problem. The reference is seen. The other functions and methods that IForm requires all work fine. I can even right-click on IForm and 'Go To Definition'. I go across the reference and find the IForm file just fine.

Any ideas about what is happening and how I fix it? I have other interfaces which don't cause problems, but these also are also only interface for straight classes and not UI WinForms.

Thank you,
Kevin Rose
 
I had this a while back and it was a spurious error, the real error wasnt reported.
btw the line number 16707566 looks like a magic number or flag that has been misinterpreted somewhere, in hex it is FEEFEE !

guy
 
Back
Top