Hello All,
I need a report in Access 2007 to show a dynamic image on every page.
I have a table, and I store image's path in a cell in each of the
rows.
In 2003, I was able to do that using VB, the following code worked:
Private Sub Detail_Format(C ancel As Integer, FormatCount As Integer)
Me![Image17].Picture = Me![imagepath]
End Sub
where Image17 is the name of the field of a picture type and
[imagepath] is the name of the column that stores the path to image on
the disk.
I upgraded my Office to 2007 and now I get the following error every
time I start that app:
"missing or broken reference to the file 'MDIVWCTL.DLL' version 11.0"
Can anyone think of any other way to fix my problem?
Thank you.
I need a report in Access 2007 to show a dynamic image on every page.
I have a table, and I store image's path in a cell in each of the
rows.
In 2003, I was able to do that using VB, the following code worked:
Private Sub Detail_Format(C ancel As Integer, FormatCount As Integer)
Me![Image17].Picture = Me![imagepath]
End Sub
where Image17 is the name of the field of a picture type and
[imagepath] is the name of the column that stores the path to image on
the disk.
I upgraded my Office to 2007 and now I get the following error every
time I start that app:
"missing or broken reference to the file 'MDIVWCTL.DLL' version 11.0"
Can anyone think of any other way to fix my problem?
Thank you.
Comment