If DataTables("库存").DataRows.Count = 0 Then
Tables("库存").AddNew()
Tables("库存").current("商品编号") = e.form.controls("ComboBox3").text
Tables("库存").current("商品型号") = e.form.controls("ComboBox1").text
Tables("库存").current("规格") = e.form.controls("ComboBox2").text
Else
If Tables("库存").Current.IsNull("工号") Then
Messagebox.Show("商品编号不能为空!")
Else
Tables("库存").AddNew()
End If
End If