1

是否可以从 SQL 服务器中选择日期并将它们用于一个月日历中的粗体日期?:)

对于一个月日历中的 BoldDates,我使用了以下代码:

        DateTime[] Reserveret = new DateTime[3];
        Reserveret[0] = new DateTime(2012, 04, 25);
        Reserveret[1] = new DateTime(2012, 04, 01);
        Reserveret[2] = new DateTime(2012, 04, 12);

        monthCalendar1.BoldedDates = Reserveret;

这将加粗月份Calendar1 中的这3 个日期。

但是我不想硬编码这些日期,而是想从我的 SQL 数据库中选择它们,其中包含 3 列,如下所示:

        ID       Room           Date
        1        103            2012-04-18
        2        106            2012-04-07
        3        103            2012-04-23
        4        103            2012-04-14
        5        101            2012-04-11

我的最终目标是按下例如 Button103,然后 2012-04-18 & 2012-04-23 & 2012-04-14 将在月历中加粗。但我不是数组专家,我认为这里需要:/

4

2 回答 2

0

我给这个问题+1,因为我正要问同样的问题,但我找到了解决办法,是的,可以按照他的要求去做。

这篇关于数组和集合的文章对我有帮助,我在这个例子中使用了一个通用列表,因为我认为在我们从数据库中获取记录时将项目添加到动态集合中更容易。我更改了一些代码以匹配问题。

//create a class and paste this.

public class createsCollection
{
    private static SqlConnection getConnection()
    {
        SqlConnection con = new SqlConnection();
        con.ConnectionString = @"Data Source=yourPCName\SQLEXPRESS;Initial Catalog=..";
        return con;
    }

    public static List <DateTime?> datesList(string room)
    {
      using (var con = new SqlConnection(getConnection().ConnectionString))
      {
        SqlDataReader dReader;
        List <DateTime?> dates = new List<DateTime?>();
        var cad = "SELECT Date from yourTbl where room = @Rn";

        using (var sqlCommand = new SqlCommand(cad, con))
        {
          try
          {   sqlCommand.CommandType = CommandType.Text
              sqlCommand.Parameters.AddWithValue("@Rn", room);
              con.Open();
              dReader = sqlCommand.ExecuteReader();

              if (dReader.HasRows == true)
              {
                while (dReader.Read())
                dates.Add(DateTime.Parse(dReader["Date"].ToString()));
              }
              return dates;
          }
          catch (Exception ex)
          { MessageBox.Show("Error: " + ex.Message);
            return null;
          }
        }
      }
    } 
  }

在您的表格中:

List<DateTime?> datesLst = new List<DateTime?>();
List<DateTime> notNullableList = new List<DateTime>(); 

private void Form_Load(object sender, EventArgs e)
{
  datesLst = createsCollection.datesList("103"); //this can be changed e.g Button.Text


  //We need to convert the nullable DateTime List 'datesLst' to a non-nullable 
  //DateTime array in order to pass it to the BoldedDates Property.

  if (datesLst != null) //if there were records from the db
  {
      foreach (DateTime? dtm in datesLst)
      {
         string str = dtm.GetValueOrDefault().ToShortDateString();
         DateTime val;

         if (DateTime.TryParse(str, out val))
         {
           notNullableList.Add(val); //add not-null value to the new generic list
         }
       }
       monthCalendar1.BoldedDates = notNullableList.ToArray(); //bold the dates gathered from the db to the Month Calendar
       monthCalendar1.Update();
       monthCalendar1.UpdateBoldedDates();
   }
}

这是一种方法,我相信有更好的方法来实现它,但是当我测试它时,这对我来说非常有用。

如果要使用固定大小的Array而不是List,您可能需要执行第一个查询,根据指定条件返回 (Date) 行数并将其设置为数组大小,也不必返回一个可以为的列表,但我这样做是我的偏好。干杯。

于 2014-01-28T07:52:00.127 回答
0

尝试这样的事情。

protected void Calendar1_DayRender(object sender, DayRenderEventArgs e)
{ 
    for (int i = 0; i < Reserveret .Length; i++)
    {
        if (e.Day.Date == Reserveret ) 
        { 
            e.Cell.Font.Bold = true; 
            //e.Cell.BackColor = System.Drawing.Color.red;  //You may also try this 
        } 
     }
 } 
于 2012-04-21T16:09:43.813 回答