我有这个,生日选择是3个组合框,1个月,1个白天和1个年份。 但我的数据库表只有这个生日属性(没有年,月或日)。 如何组合在这3个组合框中选择的项目,以便它们适合生日列?
答案 0 :(得分:2)
如果组合框中的项目是字符串,您可以执行以下操作:
Dim Day As Integer = Integer.Parse(ComboBoxDay.SelectedItem.ToString())
Dim Month As Integer = Integer.Parse(ComboBoxMonth.SelectedItem.ToString())
Dim Year As Integer = Integer.Parse(ComboBoxYear.SelectedItem.ToString())
Dim MyDate As New DateTime(Year, Month, Day)