请教:怎样用SELECT CASE 写这段代码 Post By:2012/5/26 1:04:00 [显示全部帖子]
请教:怎样用SELECT CASE 写这段代码
If e.IsFocusCell Then If e.Col.Name = "产品名称" And e.Row.IsNull("订单号") = True Then e.Cancel = True ElseIf e.Col.Name = "订购件数" And e.Row.IsNull("产品名称") = True Then e.Cancel = True ElseIf e.Col.Name = "到货日期" And e.Row.IsNull("订购件数") = True Then e.Cancel = True Else End If End If