|
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用 · 内置多项VBA编程加强工具 ★ 免费下载 ★ ★ 使用手册★
直接指定
Private Sub Command9_Click()
With Me
CurrentDb.Execute "INSERT INTO 表1 VALUES(#" & .日期 & "#, '" & .公司 & "', '" _
& .货品 & "', '" & .仓库 & "')"
.日期 = Null
.公司 = Null
.货品 = Null
.仓库 = Null
End With
End Sub
循环控件
Private Sub Command9_Click()
With Me
CurrentDb.Execute "INSERT INTO 表1 VALUES(#" & .日期 & "#, '" & .公司 & "', '" _
& .货品 & "', '" & .仓库 & "')"
End With
Dim ctl As Control
For Each ctl In Form.Controls
If TypeOf ctl Is TextBox Then ctl.Value = Null
Next
End Sub |
|