0

I want to open this dialog in my C# program:

Tablet PC Settings

Is there an Win32 API or exe I could use?

This question asked for configuration only. I would like to show the whole dialog.

Dia
  • 851
  • 1
  • 15
  • 35
  • That's a traditional Control Panel applet, isn't it (not a modern settings applet)? I think you just open the correct `.cpl` file. Take a look at https://www.ghacks.net/2017/06/06/open-windows-control-panel-applets-directly/ – Flydog57 Jun 22 '22 at 05:42
  • @Flydog57 Thanks, but `tabletpc.cpl` opens "Pen and Touch" dialog, not "Tablet PC Settings" dialog? – Dia Jun 22 '22 at 06:34

1 Answers1

0

rundll32.exe shell32.dll,Control_RunDLL tabletpc.cpl @1 the " @1" tells it to open tablet pc settings vs pen and touch dialog

klim
  • 1
  • 1
    Your answer could be improved with additional supporting information. Please [edit] to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Feb 21 '23 at 07:41