0

There's a setting on Windows 7 to automatically open XPS files from MXDW:

https://blogs.msdn.microsoft.com/adrianford/2008/08/20/automatically-opening-xps-files-from-mxdw/

Is there a way to change this checkbox setting through code? I'm using C#/VB.NET

Cœur
  • 37,241
  • 25
  • 195
  • 267
ryrich
  • 2,164
  • 16
  • 24

1 Answers1

0

Nevermind, I've figured it out.

I used a registry comparison tool (regshot) to see what changes in the registry when I toggle this setting. It is:

[HKEY_CURRENT_USER\Software\Microsoft\mxdwdui]
"OpenAfterCreation"

DWORD 0x00000001 (1) means 'checked'

ryrich
  • 2,164
  • 16
  • 24