Ken,
I could not find the link where you posted an image linking solution, i
appologize for contacting you through this entry...
In 8/30 you responded to a Mark on how to link images and have them print
according to each record in the table.
You indicated that there would be an image in the detail section, along with
text box bound to a field in that section., and all that is needed after
everything was setup was:
Private Sub Detail_Print(Cancel As Integer, PrintCount As Integer)
Me.Image25.Picture = Me.Logo
End Sub
debug always highlights : Me.Image25.Picture = Me.Logo
I can get your process to work on my test db (which was copied from the
production), but get a "type mismatch error 13" when i reproduce the
programming back in production. I've have compared all setups between the two
and cannot find my mistake...any thoughts
Zachry1
Ken Sheridan said:
This sounds like the JPEG progress dialogue. You can suppress it with the
following registry hack:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Shared Tools\Graphics
Filters\Import\JPEG\Options]
"ShowProgressDialog"="No"
ToddP said:
I'm looking for a way to surpress/hide a dialog box that briefly appears
when changing the picture property of an image from a mouse click event. The
messesage in the dialog says "Importing" with the path, and has a cancel
button. Any ideas?