Hi all you experts 
Here is some code I use replacing a picture in an Image object:
I use this code to allow users change Picture in Image Object. Works fine on my machine, will not display by the client :banghead:
it is an Acc 2003 format file, running fine in my Win 10. ia Acc2010.
Doesn't display in client's Win10, Acc2013 Environment.
What could it be? could it have something to do with the Environment?
Thanks in advance
Attached is a sample file

Here is some code I use replacing a picture in an Image object:
Code:
Public Sub SetPictureSettings(ByRef img As Image, Optional Path As String = "", Optional SizeMode As Integer = 0, Optional picAllign As Integer = 2)
img.Picture = Path
img.PictureAlignment = picAllign
Select Case SizeMode
Case 0
img.SizeMode = acOLESizeClip
Case 1
img.SizeMode = acOLESizeStretch
Case 2
img.SizeMode = acOLESizeZoom
Case Else
End Select
End Sub
it is an Acc 2003 format file, running fine in my Win 10. ia Acc2010.
Doesn't display in client's Win10, Acc2013 Environment.
What could it be? could it have something to do with the Environment?
Thanks in advance
Attached is a sample file