Exemple #1
0
		public void ModeratorRecommendedRemove_Click(object o, System.EventArgs e)
		{
			if (ShowModerator)
			{
				if (CurrentGroup.BrandK > 0)
					throw new Exception("Not brand groups!!!");
				try
				{
					Event ev = this.uiRemoveEventPicker.Event;
					try
					{
						GroupEvent ge = new GroupEvent(CurrentGroup.K, ev.K);
						ge.Delete();
					}
					catch
					{

					}
				}
				catch
				{
					ModeratorRecommendedRemoveErrorP.Visible = true;
					return;
				}
				ModeratorRecommendedRemoveDoneP.Visible = true;
			}
		}