Hi,
Is it possible to change the transition effect property in a macro?
What I want to do is to change between CoverRight and CoverLeft depending on if the previous tab is left or right from the selected tab.
I use the mouse down event to register the present tab and the mouse up event to register the new selected tab. This works well. But when trying to set the transition effect accordingly all fails with error message 438, method not supported.
What I've tried so far without success is;
FnrDep is the value of the previous tab.
In the MouseUp Event I put:
FnrArr = Mpg_Planering.Value
If FnrArr < FnrDep Then
Mpg_Planering.Page(FnrArr).TransitionEffect = 3
Else
Mpg_Planering.Page(FnrArr).TransitionEffect = 7
End If
Am I hoping to much from Excel or am I doing something wrong?
Is it possible to change the transition effect property in a macro?
What I want to do is to change between CoverRight and CoverLeft depending on if the previous tab is left or right from the selected tab.
I use the mouse down event to register the present tab and the mouse up event to register the new selected tab. This works well. But when trying to set the transition effect accordingly all fails with error message 438, method not supported.
What I've tried so far without success is;
FnrDep is the value of the previous tab.
In the MouseUp Event I put:
FnrArr = Mpg_Planering.Value
If FnrArr < FnrDep Then
Mpg_Planering.Page(FnrArr).TransitionEffect = 3
Else
Mpg_Planering.Page(FnrArr).TransitionEffect = 7
End If
Am I hoping to much from Excel or am I doing something wrong?