GetdataBy日期不起作用为什么?

时间:2010-04-09 03:01:00

标签: database vb.net

我试图在vb.net中按日期提取数据。它不是抛出错误也不是给出任何结果。而当我尝试通过查询构建器时,它会在表适配器配置向导中显示结果。我在表单中使用日期时间选择器。但是我已经将数据库中的日期格式化为日期。我很困惑。

Private Sub ToolStripButton1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripButton1.Click

Try
    Dim dt As Date = CDate(tspTextDate.Text)          
    Me.Bank_transactionsTableAdapter.GetDataByDate(dt)

    'Catch ex As Exception
Catch ex As FormatException
    MessageBox.Show("date is  wrong", "Entry Error")
Catch ex As SqlException
    MessageBox.Show("SQL Server error#" & ex.Number _
                    & ":" & ex.Message, ex.GetType.ToString)

End Try
End Sub

数据行

BT102   4/5/2010    BKS 200.00      1200.00 1400.00     
BT103   4/5/2010    BKS 200.00      1400.00 1600.00     
BT105   4/6/2010    BKS 200.00      1800.00 1800.00  

1 个答案:

答案 0 :(得分:0)

谢谢你,我得到了答案,感谢同学文森特。由于未知原因,数据网格视图未绑定到Get数据。我将其更改为Fill by并在数据网格视图的绑定源中创建了绑定,将日期时间选择器的更改作为日期。它工作。