If Not IsNull([操作日期]) And Not IsNull([操作会员编号]) And Not IsNull([使用方式]) And Not IsNull([分值]) Then
DoCmd.RunSQL "insert into 积分使用清单(积分使用日期, 会员编号, 使用方式, 内容, 分值) values ('" & Me.[操作日期] & "','" & Me.[操作会员编号] & "','" & Me.[使用方式] & "','" & Me.[内容] & "','" & Me.[分值] & "');"
Else
MsgBox "资料未填完整!"
End If