private void BindDGPendingEvents() { dgPendingEvents.DataSource = CalendarEntry.GetListPendingEventsDataTable(0); dgPendingEvents.DataBind(); int RowCount = dgPendingEvents.Items.Count; if (RowCount == 0) { Sep7.Visible = false; Pan7.Visible = false; } else { Sep7.Title = String.Format("{0} ({1})", LocRM.GetString("CA"), RowCount); } }