Hi,
I have a database "report" that is actually a letter head statement that will be sent to different hospitals based on the donor and different procedures completed.
There will be a total of 6 people using the database.
What I want to do is have a "hidden" picture of their signature and based on who the choose in the drop down (sending the letter) it will show their signature.
What I can get it to do:
Below is the code I have it the report:
I have a database "report" that is actually a letter head statement that will be sent to different hospitals based on the donor and different procedures completed.
There will be a total of 6 people using the database.
What I want to do is have a "hidden" picture of their signature and based on who the choose in the drop down (sending the letter) it will show their signature.
What I can get it to do:
- Show the signature when I place the code in the "on current" event...but only after they actually click on the report.
- Get it to save the report to a folder, open an email object and attached that report.
- Show the signature "right off the bat"...
- Saving the signature to the "Saved" file.
Below is the code I have it the report:
Code:
Private Sub Report_Current()
If Me.Text31 = "User1" Then
Me.User1.Visible = True
ElseIf Me.Text31 = "User2" Then
Me.User2.Visible = True
End If
End Sub