G
Guest
Hello,
Just upgraded to Office 2003. I have been running a access report with this
code in it to get, linked, WMF images on my reports:
Function setImagePath()
Dim strImagePath As String
On Error GoTo PictureNotAvailable
strImagePath = Me.txtImageName
Me.ImageFrame.Picture = strImagePath
Exit Function
PictureNotAvailable:
strImagePath = "G:\prodoc\refmatl\toolgrph\nopic.wmf"
Me.ImageFrame.Picture = strImagePath
End Function
Has worked great until I upgraded to 2003. Now I get an error that Access
does not support this format. I converted the images to bitmaps but the
images look terrible.
What do i need to do to get Access 2003 to work with WMF images.
Thanks in advance.
Barry
Just upgraded to Office 2003. I have been running a access report with this
code in it to get, linked, WMF images on my reports:
Function setImagePath()
Dim strImagePath As String
On Error GoTo PictureNotAvailable
strImagePath = Me.txtImageName
Me.ImageFrame.Picture = strImagePath
Exit Function
PictureNotAvailable:
strImagePath = "G:\prodoc\refmatl\toolgrph\nopic.wmf"
Me.ImageFrame.Picture = strImagePath
End Function
Has worked great until I upgraded to 2003. Now I get an error that Access
does not support this format. I converted the images to bitmaps but the
images look terrible.
What do i need to do to get Access 2003 to work with WMF images.
Thanks in advance.
Barry