Can I update Table shape object while Slideshow is running in PPT

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I had made changes on Table shape object during Slideshow using c#.This is
only reflect on PPT file, not on SlideShow window. How can i show this
changes on slideshow window?

When i had used TableShapeObject.Apply() mehod it throw an exception "The
specified value is out of range" and modify Table cell color the exception
"The method or operation is not implemented.".

Could you please give me the alternate way to modify Slideshow window on PPT
2007 using .NET.

Thanks,

K.R.Vivekanandan
 
Vivekanandan said:
Hello,

I had made changes on Table shape object during Slideshow using c#.This is
only reflect on PPT file, not on SlideShow window. How can i show this
changes on slideshow window?

Use the View.GoToSlide method on the window. Go to the slide you've changed,
even though it's the current slide. That will force a screen refresh and
should update the screen with your newly changed information.
When i had used TableShapeObject.Apply() mehod it throw an exception "The
specified value is out of range" and modify Table cell color the exception
"The method or operation is not implemented.".

Different issue. This may be another case where MS hasn't exposed objects via
the object model. Charts/Graphs are broken this way ... I think perhaps tables
are as well.
 
Steve Rindsberg,

Thanks a lot Steve.Working well by using GotoSlide() method, In this same
senario working well in office 2003 and previous versions without using
GotoSlide method.But Office 2007 not update Slideshow without using GotoSlide.

Could you please give me any other way to achieve this?.

Thanks,
K.R.Vivekanandan
 
Steve Rindsberg,

Thanks a lot Steve.Working well by using GotoSlide() method, In this same
senario working well in office 2003 and previous versions without using
GotoSlide method.But Office 2007 not update Slideshow without using GotoSlide.

Could you please give me any other way to achieve this?.

I don't know of any but perhaps someone else can suggest something.
But is there some reason not to use GoToSlide?
 
Back
Top