Mattthompson
12-02-2017, 07:29 AM
Hello,
I want to move a textbox from one position to another on a slide in a slideshow.
Actually it works and a new textbox appears at the new position, but the original textbox stays always at the origin position.
So there are two of them.
When I end the slideshow there is again only one textbox at the last chosen position.
In the slide I implemented two rectangles hyperlinked to one of the following subs.
Sub move_Left()
Me.Textbox.Left = 200
End Sub
Sub move_Right()
Me.Textbox.Left = 800
End Sub
I tried to realize a similar functionality by using the mouse_down command of the textbox, too.
But this leads to the same behavior.
Here, you must always click on the original textbox, which stays at the origin position to change the position.
Do you have an idea why this happens and how I can solve it?
Thank you for help!
I want to move a textbox from one position to another on a slide in a slideshow.
Actually it works and a new textbox appears at the new position, but the original textbox stays always at the origin position.
So there are two of them.
When I end the slideshow there is again only one textbox at the last chosen position.
In the slide I implemented two rectangles hyperlinked to one of the following subs.
Sub move_Left()
Me.Textbox.Left = 200
End Sub
Sub move_Right()
Me.Textbox.Left = 800
End Sub
I tried to realize a similar functionality by using the mouse_down command of the textbox, too.
But this leads to the same behavior.
Here, you must always click on the original textbox, which stays at the origin position to change the position.
Do you have an idea why this happens and how I can solve it?
Thank you for help!