I was able to change the picture to be displayed programmatically by using the On Page Event for the report:
Private Sub Report_Page()
Dim strFullPicturePath As String
strFullPicturePath = Reports!rptBatchPrintContract!txtImageName
'test for existence of picture file
If (Len(Dir(strFullPicturePath, vbNormal))) > 0 Then
'On True set property picture equal to string from txtImageName
Reports!rptBatchPrintContract!ImageFrame.Picture = strFullPicturePath
Else
'display default photo
Reports!rptBatchPrintContract!ImageFrame.Picture = "c:\database\pictures\defaultpicture.jpg"
End If
End Sub