D
Dave Baranas
I have a question about this behavior I am getting. I am using Excel
XP
It seems that whatever I set the transition period to does not affect
the time delay. I have tried restarting excel to see if it might work.
I have tried both ways to set it, either on the multipage directly or
in code.
IVal = 750
Mn.TabStrip.Pages(0).TransitionPeriod = IVal
Mn.TabStrip.Pages(1).TransitionPeriod = IVal
Mn.TabStrip.Pages(2).TransitionPeriod = IVal
Mn.TabStrip.Pages(3).TransitionPeriod = IVal
Mn.TabStrip.Pages(4).TransitionPeriod = IVal
First I reset all the pages and turn screen updating off.
'Each Cmd Click will turn it back on after
Application.ScreenUpdating = False
Mn.TabStrip.Pages(0).TransitionEffect = fmTransitionEffectNone
Mn.TabStrip.Pages(1).TransitionEffect = fmTransitionEffectNone
Mn.TabStrip.Pages(2).TransitionEffect = fmTransitionEffectNone
Then I switch to a blank page to make a clean transition to the new
page. Depending on where the user is in the program I want to slide
off in different directions.
Mn.TabStrip.Pages(0).TransitionEffect = fmTransitionEffectPushUp
Mn.TabStrip.Value = 3'Blank Page
Application.ScreenUpdating = True
Mn.TabStrip.Value = 0
I am curious if anybody has tried this stuff or is there a reason why
there is hardly any mention of it in the newsgroup
Regards,
Dave Baranas
XP
It seems that whatever I set the transition period to does not affect
the time delay. I have tried restarting excel to see if it might work.
I have tried both ways to set it, either on the multipage directly or
in code.
IVal = 750
Mn.TabStrip.Pages(0).TransitionPeriod = IVal
Mn.TabStrip.Pages(1).TransitionPeriod = IVal
Mn.TabStrip.Pages(2).TransitionPeriod = IVal
Mn.TabStrip.Pages(3).TransitionPeriod = IVal
Mn.TabStrip.Pages(4).TransitionPeriod = IVal
First I reset all the pages and turn screen updating off.
'Each Cmd Click will turn it back on after
Application.ScreenUpdating = False
Mn.TabStrip.Pages(0).TransitionEffect = fmTransitionEffectNone
Mn.TabStrip.Pages(1).TransitionEffect = fmTransitionEffectNone
Mn.TabStrip.Pages(2).TransitionEffect = fmTransitionEffectNone
Then I switch to a blank page to make a clean transition to the new
page. Depending on where the user is in the program I want to slide
off in different directions.
Mn.TabStrip.Pages(0).TransitionEffect = fmTransitionEffectPushUp
Mn.TabStrip.Value = 3'Blank Page
Application.ScreenUpdating = True
Mn.TabStrip.Value = 0
I am curious if anybody has tried this stuff or is there a reason why
there is hardly any mention of it in the newsgroup
Regards,
Dave Baranas