I have a form called "Eikones" and a subform called "Eikona" inside it.
I was able to hide/show the 2 (horizontal & vertical) scrollbars of the subform with the following command
but I also want to be able to move the scrollbars far top/far left i.e. to reset their positions (with a button) if the user has moved them.
I found (in access 2007 help file) that such method exists, and I am trying something like
but I get an error.
Is it applicable to forms or what is the correct syntax?
If not, How can I reset the position of the scrollbars of my subform?
I was able to hide/show the 2 (horizontal & vertical) scrollbars of the subform with the following command
Code:
[forms]![Eikones]![Eikona].form.scrollbars = 0
I found (in access 2007 help file) that such method exists, and I am trying something like
Code:
[forms]![Eikones]![Eikona].form.scroll(5,5)
Is it applicable to forms or what is the correct syntax?
If not, How can I reset the position of the scrollbars of my subform?