Change location of PowerPoint SlideSHow

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • DFriija
    New Member
    • Feb 2009
    • 1

    Change location of PowerPoint SlideSHow

    Hi,
    My application wants to run on two screens, one for the backoffice and another for the public. The public wants to make run a ppt when the screen is much idle time, my problem is when I do

    PowerPoint.Slid eShowWindow ssWindow = pptPresentation .SlideShowSetti ngs.Run ();
    System.Drawing. Rectangle workingArea = System.Windows. Forms.Screen.Al lScreens [1]. WorkingArea;
    ssWindow.Left = workingArea.X;
    ssWindow.Top = workingArea.Y;
    ssWindow.Width = workingArea.Wid th;
    ssWindow.Height = workingArea.Hei ght;

    the left is not correct, ie is not exactly the second screen.

    Unfortunately I cannot find any info on this...

    I apreciate any help from you
    Thanks
Working...