- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
查看下面的以下代码行。
Dim rst As DAO.Recordset
Dim strSql As String
strSql = "SELECT * FROM MachineSettingsT;"
Set rst = DBEngine(0)(0).OpenRecordset(strSql)
rst.FindFirst "Microwave = " & "'" & Me.Microwave & "'" & " AND WashingMachine =" & "'" & Me.WashingMachine & "'" & " AND Element1 =" & "'" & Me.Element1 & "'" _
& "AND Element3 =" & "'" & Me.Element3 & "'" & "AND Dryer =" & "'" & Me.Dryer & "'" & "AND SettingID <>" & "'" & Me.SettingID & "'"
If Not rst.NoMatch Then
Cancel = True
If MsgBox("Setting already exists; go to existing record?", vbYesNo) = vbYes Then
Me.Undo
DoCmd.SearchForRecord , , acFirst, "[SettingID] = " & rst("SettingID")
End If
End If
rst.Close
最佳答案
考虑一种不同的方法。请注意,这是针对一组文本数据类型字段。
Dim rst As DAO.Recordset
Dim strSql As String
Dim db As Database
Set db=CurrentDB
strSql = "SELECT * FROM MachineSettingsT WHERE 1=1 "
''Set rst = db.OpenRecordset(strSql)
If not IsNull(Me.Microwave) Then
strWhere = " AND Microwave = '" & Me.Microwave & "'"
End if
If not IsNull(Me.WashingMachine) Then
strWhere = strWhere & " AND WashingMachine ='" & Me.WashingMachine & "'"
End if
If not IsNull(Me.Element1) Then
strWhere = strWhere & " AND Element1 ='" & Me.Element1 & "'"
End if
If not IsNull(Me.Element3) Then
strWhere = strWhere & " AND Element3 ='" & Me.Element3 & "'"
End if
If not IsNull(Me.Dryer) Then
strWhere = strWhere & " AND Dryer ='" & Me.Dryer & "'"
End if
Set rst = db.OpenRecordset(strSql & strWhere)
关于ms-access - .FindFirst VBA MS Access 函数的意外行为 : . NoMatch 始终返回 true,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14731691/
我在这里有这个脚本: angular.module('UserValidation', []).directive('validPasswordC', function () { return
正则表达式模式需要匹配以下内容: abc_xyz_0 abc_1025_01.29.00_xyz_0 abc_0302_42.01.00_xyz_0 (abc 和 xyz 之间的数字无关紧要) 所以我
我有两个输入文件,每个文件的长度为 5200 字节。一个七字节的键用于比较两个文件,如果匹配,则需要将其写入“匹配”文件,但在写入匹配文件时,我需要来自 infile1 的一些字段。以及来自 infi
我使用此代码进行密码输入并确认密码输入正确匹配 Javascript: var app = angular.module('app', []); app.directive('validPas
请帮助我解决为什么我在提到评论人员时遇到错误。我真的被困在这里了!我还应该提供哪些其他详细信息? main.cpp #include #include #include int main() {
除了这一行,我的代码有效 .FindFirst "[DONOR_CONTACT_ID] = strTemp2" 我希望我的代码检查是否有记录,其中存在特定的 DONOR_CONTACT_ID,因为有多
我正在使用数据,表 1.9.4 和 R 3.1.2 平台:x86_64-pc-linux-gnu(64 位)。 ':=' 功能中的 nomatch 参数似乎不起作用。以下是示例代码 library(d
我有一个名为 df 的数据框看起来像这样...... "ID","ReleaseYear","CriticPlayerPrefer","n","CountCriticScores","CountUse
查看下面的以下代码行。 Dim rst As DAO.Recordset Dim strSql As String strSql = "SELECT * FROM MachineSettingsT;"
我是一名优秀的程序员,十分优秀!