Or:
create a table with an autonumber field and a field that contains the customer names.
then create a form and place an unbound image box on it.
put the code below in the 'on current' event of the form.
and store your signatures in a folder as bitmaps, name each signature the same as whatever is in the customer name field in the table.
Private Sub Form_Current()
'Display the current record number and the
Dim recPosition As Recordset
Dim filteredPosition As Recordset
'Dim CustomerRecordNum
Dim customername As String
Set recPosition = Me.RecordsetClone
Set filteredPosition = Me.RecordsetClone
recPosition.Bookmark = Me.Bookmark
recPosition.close
'=================================================================================================
filteredPosition.Bookmark = Me.Bookmark
customername = DLookup("[CustName]", "tblTableOfCustomers", "[CustNum] = " & (recPosition.AbsolutePosition + 1))
recPosition.close
'Image2 will be the name of the image box on your form
'R:\CustomersSignatures\ will be the path to the folder containing the signature files
Me.Image2.Picture = "R:\CustomersSignatures\" & customername & ".bmp"
Me.Repaint
End Sub
"Its not who you are that defines you, its what you do..." - Bruce Wayne