T
Toni
We are currently are using Access 2003 and going to start using SQL Server
2008.
We currently have one access application that links to the tables by using a
DSN connection The connection seems to work fine and for the most part the
application works. One problem that we are having is using some of the
dropdown combo box. The following error occurs "Run-time error '3614'": GUID
not allowed in Find Method criteria expression."
Below is the source code for the combo box.
Private Sub Combo3_AfterUpdate()
' Find the record that matches the control.
Me.RecordsetClone.FindFirst "[dbo_MemberList].[MemberID] = '" &
Me![Combo3] & "'"
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
The value of me![Combo3] has the correct guid information
The only thing that has changed is we have changed the application to link
to the new DSN link The rest of our access applications are actual .adp apps
and they all work fine.
Any suggestions would be greatly appreciated.
Thanks in advance
Tsharp
2008.
We currently have one access application that links to the tables by using a
DSN connection The connection seems to work fine and for the most part the
application works. One problem that we are having is using some of the
dropdown combo box. The following error occurs "Run-time error '3614'": GUID
not allowed in Find Method criteria expression."
Below is the source code for the combo box.
Private Sub Combo3_AfterUpdate()
' Find the record that matches the control.
Me.RecordsetClone.FindFirst "[dbo_MemberList].[MemberID] = '" &
Me![Combo3] & "'"
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
The value of me![Combo3] has the correct guid information
The only thing that has changed is we have changed the application to link
to the new DSN link The rest of our access applications are actual .adp apps
and they all work fine.
Any suggestions would be greatly appreciated.
Thanks in advance
Tsharp