embedded object shrinks in access 2016 (1 Viewer)

Wysy

Registered User.
Local time
Yesterday, 21:19
Joined
Jul 5, 2015
Messages
333
Hi,
I am using two computers with two different versions of access. One is 2013 the other one 2016. I use reports with embedded pictures sent to background. The report that displays correctly in 2013, has a shrinked embedded image in 2016. The report that displays correctly in 2016, has an oversized embedded image in 2013.
Any idea?
thanks
Andrew
 

arnelgp

..forever waiting... waiting for jellybean!
Local time
Today, 12:19
Joined
May 7, 2009
Messages
19,239
have you played with the Image's Size Mode (Form Design->Property->Format).
if it still behave as before, you can manually set the picture size through
Form's Load Event:

Code:
Private Sub Form_Load()
Me.Image0.Height = 1440 * 1 '1"x1" size
Me.Image0.Width = 1440 * 1  '1440 twips per inch = 1 inch
End Sub
 

Wysy

Registered User.
Local time
Yesterday, 21:19
Joined
Jul 5, 2015
Messages
333
thanks for the quick reply. Its a report, not a form. However i need to share this.
I have made a new access database in which i have designed the report from scretch using ms access 2016. Then i took this report and imported into my original database file. And it works now in both version correctly....
 

Users who are viewing this thread

Top Bottom