Hi,
I'm totally new to access, and need a little help on how to tweak an images location every time an instance of "GroupHeader0" is rendered. So the same image needs to be possibly in different locations. But only tweaked in the Y axis.
I place the code in "On Paint"
and the code I am using to test with is;
Code:
Private Sub GroupHeader0_Paint()
Me.imgVFF.Left = 2880
End Sub
also I've used below;
Code:
Private Sub GroupHeader0_Paint()
Dim rpt As Report
Set rpt = Reports!projects
rpt.imgVFF.Left = 2880
End Sub
Either way I get; "The setting you entered isn't valid for this property".
consequently I can do the following, and get a number out of it.
Code:
Debug.Print Me.imgVFF.Left
a little confused, any ideas?