Dual Monitor-Vb.Net 2005

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

Guest

Hi
I'm develop a program to display a powerpoint presentation in different
monitor.

Anyone help how to programmatically select the monitor?

I'm using Microsoft.Office.Interop.PowerPoint but i not found the library
let me control that?

I appreciate any help on this.

Thanks , Kev
 
Hi.

How about above way.


string RKey = @"Software\Microsoft\Office\11.0\PowerPoint\Options";

Microsoft.Win32.RegistryKey rk =
Microsoft.Win32.Registry.CurrentUser.OpenSubKey(RKey,true);

rk.SetValue("DisplayMonitor",@"\\.\DISPLAY2\Monitor0");
 
Back
Top