I am trying to allow the user to e-mail the form to the client but before that's done they need to make sure the user reviews the form before they e-mail it. Also I only want the Current record to be viewed by using a Print Review command button on the form. When i click on the button i get a Blank Page. Here is the code that I am using. Attached is a copy of my database. Thanking you for any assistance that you can give me.
Private Sub Preview_Reports95_Click()
Dim strDocName As String
Dim strWhere As String
strDocName = "TrackingSystemReport3"
strWhere = "[ID]=" & Me!ID
DoCmd.OpenReport strDocName, acViewPreview, , strWhere
End Sub
Also if you see any other issues with my code please feel free to let me know. I am very new and raw to Access.