请老师帮我诊断下,谢谢
此主题相关图片如下:搜狗截图19年06月26日1553_1.png
要实现:1)以“财产价格确定时间”为基数,30天后为“一拍启动到期日”
2)按照“标的物类型”区分为“动产”和“不动产”,以计算出的“一拍启动到期日”分别加上45天和60天,计算出“二拍启动到期日”
3)按照“标的物类型”区分为“动产”和“不动产”,以计算出的“二拍启动到期日”分别加上22天和30天,计算出“二拍启动到期日”和“变卖启动到期日”
4)分别对“执行通知书到期日”和一拍、二拍、变卖启动到期日以及绝对到期日提前三天进行标注提醒。
以下代码执行时出现的问题:1)字符串到类型“data”的转换无效;(2)输入财产价格确定时间后,只能自动计算出“一拍启动到期日”,不能显示出“二拍启动到期日”和“变卖启动到期日”的时间
表事件
执行指挥中心_DataColChanged
Select Case e.DataCol.Name
Case "收案日期"
If e.DataRow.IsNull("收案日期") Then
e.DataRow("执行通知书到期日") = Nothing
Else
e.DataRow("执行通知书到期日") = e.DataRow("收案日期").AddDays(7)
End If
End Select
Select Case e.DataCol.Name
Case "财产价格确定时间"
If e.DataRow.IsNull("财产价格确定时间") Then
e.DataRow("一拍启动到期日") = Nothing
Else
e.DataRow("一拍启动到期日") = e.DataRow("财产价格确定时间").AddDays(30)
End If
End Select
Select Case e.DataCol.Name
Case "一拍启动到期日","标的物类型"
If e.DataRow("标的物类型") = "动产" Then
If e.DataRow.IsNull("二拍启动到期日") Then
e.DataRow("二拍启动到期日") = Nothing
Else
e.DataRow("二拍启动到期日") = e.DataRow("一拍启动到期日").AddDays(45)
End If
End If
If e.DataRow("标的物类型") = "不动产" Then
If e.DataRow.IsNull("二拍启动到期日") Then
e.DataRow("二拍启动到期日") = Nothing
Else
e.DataRow("二拍启动到期日") = e.DataRow("一拍启动到期日").AddDays(60)
End If
End If
End Select
Select Case e.DataCol.Name
Case "二拍启动到期日","标的物类型"
If e.DataRow("标的物类型") = "动产" Then
If e.DataRow.IsNull("变卖启动到期日") Then
e.DataRow("变卖启动到期日") = Nothing
Else
e.DataRow("变卖启动到期日") = e.DataRow("二拍启动到期日").AddDays(22)
End If
End If
If e.DataRow("标的物类型") = "不动产" Then
If e.DataRow.IsNull("变卖启动到期日") Then
e.DataRow("变卖启动到期日") = Nothing
Else
e.DataRow("变卖启动到期日") = e.DataRow("二拍启动到期日").AddDays(30)
End If
End If
End Select
Select Case e.DataCol.Name
Case "查扣冻时间","查扣冻期限"
If e.DataRow.IsNull("查扣冻时间") Then
e.DataRow("绝对到期时间") = Nothing
Else
e.DataRow("绝对到期时间") = e.DataRow("查扣冻时间").AddDays(e.DataRow("查扣冻期限"))
End If
End Select
执行指挥中心_DrawCell
If e.Col.Name = "执行通知书到期日" Then
If e.Row.IsNull("执行通知书到期日") = False
If e.Row("执行通知书到期日") < Date.Today.AddDays(3) AndAlso e.Row("执行通知书到期日") >= Date.Today Then
e.Style = "到期"
End If
End If
End If
If e.Col.Name = "一拍启动到期日" Then
If e.Row.IsNull("一拍启动到期日") = False
If e.Row("一拍启动到期日") < Date.Today.AddDays(3) AndAlso e.Row("一拍启动到期日") >= Date.Today Then
e.Style = "拍卖"
End If
End If
End If
If e.Col.Name = "二拍启动到期日" Then
If e.Row.IsNull("二拍启动到期日") = False
If e.Row("二拍启动到期日") < Date.Today.AddDays(3) AndAlso e.Row("二拍启动到期日") >= Date.Today Then
e.Style = "拍卖"
End If
End If
End If
If e.Col.Name = "变卖启动到期日" Then
If e.Row.IsNull("变卖启动到期日") = False
If e.Row("变卖启动到期日") < Date.Today.AddDays(3) AndAlso e.Row("变卖启动到期日") >= Date.Today Then
e.Style = "拍卖"
End If
End If
End If
If e.Col.Name = "绝对到期时间" Then
If e.Row.IsNull("绝对到期时间") = False
If e.Row("绝对到期时间") < Date.Today.AddDays(15) AndAlso e.Row("绝对到期时间") >= Date.Today Then
e.Style = "绝对到期"
End If
End If
End If
执行指挥中心_MouseEnterCell
If e.Col.Name = "标的物名称" AndAlso e.Row.IsNull("标的物名称") = False Then
e.Table.ShowToolTip(e.Row("标的物名称"),e.Row,e.Col)
End If
If e.Col.Name = "上级督办或信访" AndAlso e.Row.IsNull("上级督办或信访") = False Then
e.Table.ShowToolTip(e.Row("上级督办或信访"),e.Row,e.Col)
End If
执行指挥中心_MouseLeaveCell
If e.Col.Name = "标的物名称" Then
e.Table.HideToolTip()
End If
If e.Col.Name = "上级督办或信访" Then
e.Table.HideToolTip()
End If