| | |
| | | |
| | | |
| | | using DevExpress.Utils.Svg; |
| | | using System; |
| | | using System.Collections; |
| | | using System.Collections.Generic; |
| | |
| | | listBoxDay.Items.Add(i.ToString()); |
| | | } |
| | | |
| | | dict = HistoryAnaPrjFileHelper.GetFileExistStatus( year, month ); |
| | | dict = BLL.AnaPrj.GetExistStatus( year, month ); |
| | | } |
| | | Dictionary<int, bool> dict = null; |
| | | |
| | |
| | | int year = Convert.ToInt32(spinEditYear.Text); |
| | | int month = Convert.ToInt32(comboBoxMonth.Text); |
| | | int day = listBoxDay.SelectedIndex + 1; |
| | | var yester1_day_anaPrj = HistoryAnaPrjFileHelper.GetAnaPrj(new DateTime(year,month,day)); |
| | | var yester1_day_anaPrj = IStation.BLL.AnaPrj.GetPrj(new DateTime(year,month,day)); |
| | | if (yester1_day_anaPrj != null) |
| | | anaResultInfoManuCtrl1.SetBindingData(yester1_day_anaPrj); |
| | | else |
| | |
| | | dict[day] = false; |
| | | int year = Convert.ToInt32(spinEditYear.Text); |
| | | int month = Convert.ToInt32(comboBoxMonth.Text); |
| | | HistoryAnaPrjFileHelper.Delete(new DateTime(year, month, day)); |
| | | // HistoryAnaPrjFileHelper.Delete(new DateTime(year, month, day)); |
| | | |
| | | } |
| | | |