Hi there,
Hoping someone can help with the following issue:
I have a form which displays an image on the screen by using an x, y coordinate stored in the record.
Each record has an [Xcoord] and [Ycoord] value so on the form it will display an image (image23) by using the 'left' and 'top' functions to emulate the x and y co-ordinates. like so:
Private Sub Form_Current()
Me.image23.Left = Me.xcoord
Me.image23.Top = Me.ycoord
This works fine and scrolling through the records shows the different locations of the various records.
But what I would like to do is show all of them at the same time! so you can see all of the records in their relevant co-ordinates.
I hope I have explained it well enough and that makes sense. Any help would be much appreciated.
Hoping someone can help with the following issue:
I have a form which displays an image on the screen by using an x, y coordinate stored in the record.
Each record has an [Xcoord] and [Ycoord] value so on the form it will display an image (image23) by using the 'left' and 'top' functions to emulate the x and y co-ordinates. like so:
Private Sub Form_Current()
Me.image23.Left = Me.xcoord
Me.image23.Top = Me.ycoord
This works fine and scrolling through the records shows the different locations of the various records.
But what I would like to do is show all of them at the same time! so you can see all of the records in their relevant co-ordinates.
I hope I have explained it well enough and that makes sense. Any help would be much appreciated.