I'm currently working on a small VB.NET app on VS2010, and it seems that setting the "dpiAware" field on True in the project's manifest file is the only way of having the program not come up as a blurry mess on newer PCs.
The thing is, i really need (not allowed to explain why) to have this setting "packed" in the executable and not have it in a separate file that needs to come along with it.
After some research, it seems to be possible to embed the manifest file inside the exe file, but the instructions in my case are often unclear due to being written for newer versions of VS and/or different languages. Maybe it's even possible to change the dpiAware field in-code and not having to mess with external files, i'm not really sure.
Hopefully some of you had some experience in this department.
Any help would be greatly appreciated. Thanks in advance !