Re: Removing info from text box once it's saved to a file
- From: "David M. Marcovitz" <marcoNOSPAM@xxxxxxxxxx>
- Date: Fri, 05 Oct 2007 06:35:31 -0700
MsgBox is the easiest, but if you want your own shape, you could use the
AddShape method
(ActivePresentation.SlideShowWindow.View.Slide.Shapes.AddShape) or you
could create a shape in advance and hide it. When the time is right, have
the shape become visible
ActivePresentation.Slides(5).Shapes("SecretButton").Visible = msoTrue
This makes a shape named "SecretButton" on slide 5 become visible. The
code linked to that shape can be to make it invisible again (change True
to False above). However, once you're going this route, you might as well
go back to your original specification and have the shape become visible,
wait 2 seconds and have the shape disappear. Example 8.4 on my site
(http://www.PowerfulPowerPoint.com/) shows how to do the delay.
--David
--
David M. Marcovitz
Microsoft PowerPoint MVP
Director of Graduate Programs in Educational Technology
Loyola College in Maryland
Author of _Powerful PowerPoint for Educators_
http://www.PowerfulPowerPoint.com/
=?Utf-8?B?U2VyZ2UgTS4=?= <SergeM@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in
news:BC88747C-BE92-49D9-9AE6-D95CE4FCACE9@xxxxxxxxxxxxx:
Thank you very much guys - all works fine! You are the best!
Steve,
I'm sorry if it's too much to ask for, but is it possible instead of
this standard pop-up text-box window, to have my own custom shape
appear with words "THANK YOU.., etc." and button OK to dismiss it?
Thank you,
Serge
"Steve Rindsberg" wrote:
In article <AD873AB9-3BAA-413F-831F-27E822A0F818@xxxxxxxxxxxxx>,
Serge M. wrote:
Thank you John,
It works fine now. Is it possible to put a pop-up "Thank You" note
appearing for 1-2 seconds when users clicks SAVE, to let them know
that their info is accepted?
Settle for a message that they can read and click OK to dismiss?
Add this:
MsgBox "Thanks a bunch. Loved your answers. Click OK to make me go
away"
-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================
.
- Follow-Ups:
- Re: Removing info from text box once it's saved to a file
- From: Serge M.
- Re: Removing info from text box once it's saved to a file
- References:
- Re: Removing info from text box once it's saved to a file
- From: Steve Rindsberg
- Re: Removing info from text box once it's saved to a file
- From: Serge M.
- Re: Removing info from text box once it's saved to a file
- From: John Wilson
- Re: Removing info from text box once it's saved to a file
- From: Serge M.
- Re: Removing info from text box once it's saved to a file
- From: Steve Rindsberg
- Re: Removing info from text box once it's saved to a file
- Prev by Date: Re: !!iTS INTERESTING!!!!How do i print power point files programitica
- Next by Date: Re: Paragraph problem...please help
- Previous by thread: Re: Removing info from text box once it's saved to a file
- Next by thread: Re: Removing info from text box once it's saved to a file
- Index(es):