WUGNET, the Windows User Group Network
Your Complete Resource Center for "The Best" in Shareware, Computing Tips and Support, Windows Industry News... and much more!
Home Forums Shareware Windows Tips Hot Offers FREE Newsletters Arcade Contact Us About Partners
Search WUGNET: RSS Feeds RSS Feeds Advertise with WUGNET    |    Shareware eBooks
HomeHome FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

VBA

 
Goto page Previous  1, 2, 3
   Home -> Office -> General Discussions RSS
Next:  How do I print an 8-slide document in PowerPoint ..  
Author Message
Alexf

External


Since: May 20, 2008
Posts: 39



(Msg. 9) Posted: Thu Aug 14, 2008 9:21 pm
Post subject: Re: VBA [Login to view extended thread Info.]
Archived from groups: microsoft>public>powerpoint (more info?)

Any way to get the Set Up Show menu up while in Kiosk mode?

"Steve Rindsberg" wrote:

> In article <3E3E61E4-DA29-453B-9552-597D745C3006.DeleteThis@microsoft.com>, Alexf wrote:
> > Oh...and how do you get the Graphics hardware acceleration to work by
> > clicking a button in Powerpoint? (Kiosk Mode)
>
> I don't know that you *can* change the setting via code.
>
>
>
> -----------------------------------------
> Steve Rindsberg, PPT MVP
> PPT FAQ: www.pptfaq.com
> PPTools: www.pptools.com
> ================================================
> Live and in personable in the Help Center at PowerPoint Live
> Sept 21-24, San Diego CA, USA
> www.pptlive.com
>
>
Back to top
Login to vote
Steve Rindsberg

External


Since: Apr 02, 2004
Posts: 5126



(Msg. 10) Posted: Fri Aug 15, 2008 11:03 am
Post subject: Re: VBA [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <5741CACB-E532-4263-8CB0-A5A6E31DB75E.TakeThisOut@microsoft.com>, Alexf wrote:
> Any way to get the Set Up Show menu up while in Kiosk mode?

The show's already running at that point; I doubt changing the settings would
work.

BUT

You might be able to do something like this in code:

- note the current show position
- quit the show
- change show settings, including StartingSlide
- start the show

BUT

In looking for something that might help with the above, I stumbled on the
.AcceleratorsEnabled property of SlideShow view.

That might be exactly what you were looking for in the first place.



-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================
Live and in personable in the Help Center at PowerPoint Live
Sept 21-24, San Diego CA, USA
www.pptlive.com
Back to top
Login to vote
Alexf

External


Since: May 20, 2008
Posts: 39



(Msg. 11) Posted: Fri Aug 15, 2008 12:53 pm
Post subject: Re: VBA [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Um...actually the question wasn't phrased correctly (different question)

If there was a textbox on slide 3, and another textbox on slide 6, and there
was nothing in both boxes. When someone types in "Hi!", how can you make that
same text appear in the textbox in slide 6?

Another thing: how can you remotely clear the text boxes on slides 3 and 6?

Thanks for everything!
Back to top
Login to vote
Steve Rindsberg

External


Since: Apr 02, 2004
Posts: 5126



(Msg. 12) Posted: Fri Aug 15, 2008 4:23 pm
Post subject: Re: VBA [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <BE99BE1D-1180-41C0-BD93-FEC2E692B6DA RemoveThis @microsoft.com>, Alexf wrote:
> Um...actually the question wasn't phrased correctly (different question)
>
> If there was a textbox on slide 3, and another textbox on slide 6, and there
> was nothing in both boxes. When someone types in "Hi!", how can you make that
> same text appear in the textbox in slide 6?
>
> Another thing: how can you remotely clear the text boxes on slides 3 and 6?

That's much easier. <g>

For the first one:

Dim oSourceShape as Shape
Dim oTargetShape as Shape

With ActivePresentation
Set oSourceShape = .Slides(3).Shapes("BlahBlah")
Set oTargetShape = .Slides(6).Shapes("YadaYada")
End With

oTargetShape.TextFrame.TextRange.Text = _
oSourceShape.TextFrame.TextRange.Text


For the second:

Change the last bit to

oTargetShape.TextFrame.TextRange.Text = ""
oSourceShape.TextFrame.TextRange.Text = ""

You'll need to either name the shapes something sensible and use the names in
place of BlahBlah and YadaYada above, or find the existing names of the shapes
and use those.


-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================
Live and in personable in the Help Center at PowerPoint Live
Sept 21-24, San Diego CA, USA
www.pptlive.com
Back to top
Login to vote
Alexf

External


Since: May 20, 2008
Posts: 39



(Msg. 13) Posted: Fri Aug 15, 2008 4:23 pm
Post subject: Re: VBA [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Um...How would that actually work?
Back to top
Login to vote
Alexf

External


Since: May 20, 2008
Posts: 39



(Msg. 14) Posted: Fri Aug 15, 2008 4:23 pm
Post subject: Re: VBA [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On my computer, it doesn't work at all. Could you make a 2 slide presentation
w/ the same information so I can get an Idea? On My computer, it says that
the textbox "cannot have a textrange"
Back to top
Login to vote
Steve Rindsberg

External


Since: Apr 02, 2004
Posts: 5126



(Msg. 15) Posted: Sat Aug 16, 2008 12:58 pm
Post subject: Re: VBA [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <1AAF0ACF-99FA-4117-A325-C9A9FEE8D84F DeleteThis @microsoft.com>, Alexf wrote:
> On my computer, it doesn't work at all. Could you make a 2 slide presentation
> w/ the same information so I can get an Idea? On My computer, it says that
> the textbox "cannot have a textrange"

I was thinking text box instead of text box *control*. They're different.
You did mention that you wanted this to work on text the user entered during a
slide show, and they can only do that with a text box control ... I should've
sorted that out. Sorry.

Sub Thing()

Dim oSourceShape As Shape
Dim oTargetShape As Shape

With ActivePresentation
Set oSourceShape = .Slides(1).Shapes("BlahBlah")
Set oTargetShape = .Slides(2).Shapes("YadaYada")
End With

oTargetShape.OLEFormat.Object.Text = _
oSourceShape.OLEFormat.Object.Text

End Sub

Sub NameTheShape()
' Use this to name the shapes as needed
With ActiveWindow.Selection.ShapeRange(1)
.Name = "Type the name you want to use here"
End With
End Sub


-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================
Live and in personable in the Help Center at PowerPoint Live
Sept 21-24, San Diego CA, USA
www.pptlive.com
Back to top
Login to vote
Alexf

External


Since: May 20, 2008
Posts: 39



(Msg. 16) Posted: Sat Aug 16, 2008 12:58 pm
Post subject: Re: VBA [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

If TextBox (Nameenter) was on slide 3, would it be put in place of "Thing"?
Would the Source Shape be Nameenter and the Target Shape be nameoutput
(slide 6)?

And what would "Name the shape" be? Slide 3 (Nameenter) or Slide 6
(nameoutput)?

Thanks!
Back to top
Login to vote
Display posts from previous:   
       Home -> Office -> General Discussions All times are: Eastern Time (US & Canada) (change)
Goto page Previous  1, 2, 3
Page 2 of 3

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Categories:
 Windows XP
 Windows Vista
 Windows Other
  Office
 Office Other
 Security
 WinRAR
  • Home |
  • Shareware |
  • Windows Tips |
  • Hot Offers |
  • FREE Newsletters |
  • Arcade |
  • Forums |
  • eBooks |
  • About WUGNET |
  • Partners |
  • Contact

  • WUGNET Privacy Policy |
  • Link to WUGNET