When writing VB forms app in MSVS2010, what is programmatic equivalent of locating the application's EXE, right clicking and selecting Properties > Compatibility > "Disable display scaling on high DPI settings"?
In Visual Studio: tried:
Using Manifest file and setting application to dpiaware
<dpiAware> true </dpiAware>
(maybe I didn't edit the manifest correctly by not putting this is in the correct location). The only example I had access to was on a CSharp project and perhaps it works differently in VB.
- Design Editor Properties on the main form: AutoSize: False, AutoScaleMode: None, Font, DPI, Inherit - all of which made no difference whatsoever.