0

私は表示ボタンを取り、コードは次のとおりです:-

private void btnDisplay_Click(object sender, EventArgs e)
{            
        DateTime selectedDate = DateTime.Now;
        String query = "SELECT sno,currDate,WtrNm,Type,No FROM WtrTblAllot WHERE currDate = @SelectedDate";
        SqlCommand command = new SqlCommand(query, con);
        command.Parameters.AddWithValue("@SelectedDate", selectedDate);
        SqlDataAdapter da = new SqlDataAdapter(command);
        DataSet ds = new DataSet();
        da.Fill(ds);
        dgvWtrAllot.DataSource = ds.Tables[0];
}

問題は、クリックするとデータグリッドビューが表示されますが、選択した日付データが表示されないことです。

datetimepicker のコーディング領域:-

private void dtTmPkrWtr_ValueChanged(object sender, EventArgs e)
{

}
4

3 に答える 3

0

以下を使用してデータを日付でcodeフィルター処理し、このコードをのイベントに追加します。うまくいくことを願っています:)dataGridViewValueChangeddateTimePicker

try
        {

            con = new SqlConnection(cs.ConDB);
            con.Open();

            cmd = new SqlCommand(@"SELECT RTRIM(sno)as [sno],RTRIM(currDate) as [currDate],
            RTRIM(WtrNm) as [WtrNm],RTRIM(Type) as [Type],(No ) as [No] from WtrTblAllot where currDate like '" + currDate.Text + "%' order by currDate", con);
            SqlDataAdapter myDA = new SqlDataAdapter(cmd);
            DataSet WtrTblAllot = new DataSet();
            myDA.Fill(WtrTblAllot , "WtrTblAllot ");
            dataGridView1.DataSource = WtrTblAllot .Tables["WtrTblAllot "].DefaultView;
            con.Close();
        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
        }
于 2015-10-27T06:45:58.630 に答える
0

データをロードする方法があるほうがよい

private void dtTmPkrWtr_ValueChanged(object sender, EventArgs e)
{            
       LoadGridData(dateTimePicker1.Value);
}

private void btnDisplay_Click(object sender, EventArgs e)
{            
       LoadGridData(DateTime.Now);     
}

private void LoadGridData(DateTime selectedDate)
{
    String query = "SELECT sno,currDate,WtrNm,Type,No FROM WtrTblAllot WHERE currDate = @SelectedDate";
    SqlCommand command = new SqlCommand(query, con);
    command.Parameters.AddWithValue("@SelectedDate", dateTimePicker1.Value);
    SqlDataAdapter da = new SqlDataAdapter(command);
    DataSet ds = new DataSet();
    da.Fill(ds);
    dgvWtrAllot.DataSource = ds.Tables[0];
}
于 2013-09-06T06:35:28.983 に答える