How to move a bound image control in an Access Report programmatically
I want to move a bound image control in an Access Report programmatically so that it lines up
with other stuff. I just want to move it up or down or resize the image.
Microsoft Access is a rapid application development (RAD) relational database tool. Access can be used for both desktop and web-based applications, and uses VBA (Visual Basic for Applications) as its coding language.
image control name: im
to size the width to i inch.
im.Width = 1440
To align it left with field f1.
im.Left = f1.Left
and so on.
To align it right with f1
im.Left = f1.Left + f1.Width - im.Width