Decleration Problem
-
Hi! I get this message: Error 1 Missing partial modifier on declaration of type 'VAControls.SchedulerXmlNode'; another partial declaration of this type exists C:\Documents and Settings\Yossi_Tubis\My Documents\Visual Studio 2005\Projects\VASchedular\VASchedular\SchedulerXmlNode.cs 8 11 VASchedular how can i know where this decleration exists so i will change it??
-
Hi! I get this message: Error 1 Missing partial modifier on declaration of type 'VAControls.SchedulerXmlNode'; another partial declaration of this type exists C:\Documents and Settings\Yossi_Tubis\My Documents\Visual Studio 2005\Projects\VASchedular\VASchedular\SchedulerXmlNode.cs 8 11 VASchedular how can i know where this decleration exists so i will change it??
It is probably in the designer. Do you have a SchedulerXmlNode.designer.cs file? This error indicates you declared the class VAControls.SchedulerXmlNode twice, but one of the two declarations is missing the "partial" keyword (like "public partial class VAControls...") Jeff