I have 2 projects within the same solution. I can build both projects and build the solution without a problem. When I go to debug I get a:
An unhandled exception of type 'System.StackOverflowException' occurred in GradeReport.exe

The error takes me to the MyBase.New() line in my code. Can anyone tell me what this means or how to fix it?? Thanks

VB Code:
  1. #Region " Windows Form Designer generated code "
  2.  
  3.     Public Sub New()
  4. ------> MyBase.New()
  5.  
  6.         'This call is required by the Windows Form Designer.
  7.         InitializeComponent()
  8.  
  9.         'Add any initialization after the InitializeComponent() call
  10.  
  11.     End Sub