Example #1
0
		public virtual string GetSchedule()
		{
			string ret = "";
			if( outputRom != null )
			{
				ScheduleHelper2 sh2 = new ScheduleHelper2(outputRom);
				ret = sh2.GetSchedule();
				ArrayList errors = sh2.GetErrorMessages();
				if( errors != null && errors.Count > 0 )
				{
					MainClass.ShowErrors( errors );
				}
			}
			return ret;
		}