Multipage TransitionPeriod

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
 
D

Dave Baranas

Well theres nothing like rebooting the machine!

To get the time period to change I have to reboot to get it to work.

Are there any known issues about this

I am thinking maybe video card issue


Regards,


Dave Baranas
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top