Ho provato a corrggere il codice in questo modo, ma mi da errore in questo codice, nella seconda riga
If Len(Me.OpenArgs & vbNullstring)>0 then
Me.RecordsetClone.findFirst "[Drawing review N°]= " & Chr$(34) & Me!OpenArgs & Chr$(34)
If Not Me.RecordsetClone.NoMatch then
Me.Bookmark=Me.RecordsetClone.Bookmark
Else
MsgBox "record non trovato"
End If
End if
L'ho inserito nel LOAD del Form che si deve aprire nel record scelto.
Invece questo codice, con la tua correzione:
Private Sub Command313_Click()
On Error GoTo Err_Command313_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Error_Summary"
stLinkCriteria = "[Drawing review N°]= " & Chr$(34) & Me![Drawing review N°] & Chr$(34)
DoCmd.OpenForm "Error_Summary", , , , , acDialog, Me![Drawing review N°]
Exit_Command313_Click:
Exit Sub
Err_Command313_Click:
MsgBox Err.Description
Resume Exit_Command313_Click
End Sub
L'ho inserito per il pulsante nel primo Form che mi dovrebbe reindirizzare la form "Error_Summary".
Continua a darmi errore.