Problem
https://i.imgur.com/W14AwGW.png
Spoiler!
Solution
1) Right-click cm0102.exe > Properties
2) Compatibility > Change High DPI Settings
Spoiler!
3) Change settings as below
Spoiler!
Problem
https://i.imgur.com/W14AwGW.png
Spoiler!
Solution
1) Right-click cm0102.exe > Properties
2) Compatibility > Change High DPI Settings
Spoiler!
3) Change settings as below
Spoiler!
I had this problem about 6 months ago and while most reported success with the above steps, this did not work for me. What I had to do was open the cm0102_GDI.exe, this should load fine. Then when on the initial settings, set to "Windowed" and save. Then you can quit and load the normal (or patched) cm0102.exe without any issues.
I had this problem too and went into display settings, changed from 125% (recommended) to 100% and it worked a treat, just a pain changing it over every time!
If it works... :ok:
I was doing this as well until I found out about this option.
I even had a batch script so that I clicked it once and it would do it for me automatically.
Below code I ran to go from 150% zoom to 100% zoom.
Below code I ran to return from 100% zoom to 150% zoom.Code:@ECHO OFF
explorer ms-settings:display
ping -n 2 127.0.0.1 > nul
:VBSDynamicBuild
SET TempVBSFile=%tmp%\~tmpSendKeysTemp.vbs
IF EXIST "%TempVBSFile%" DEL /F /Q "%TempVBSFile%"
ECHO Set WshShell = WScript.CreateObject("WScript.Shell") >>"%TempVBSFile%"
ECHO Wscript.Sleep 100 >>"%TempVBSFile%"
ECHO WshShell.SendKeys "{TAB 6}" >>"%TempVBSFile%"
ECHO WshShell.SendKeys "{UP 2}" >>"%TempVBSFile%"
ECHO Wscript.Sleep 100 >>"%TempVBSFile%"
ECHO WshShell.SendKeys "%%{F4}" >>"%TempVBSFile%"
CSCRIPT //nologo "%TempVBSFile%"
EXIT
Edit the line in bold depending on your zoom. For example for starting at 125% zoom you'll change the UP 2/DOWN 2 to UP 1/DOWN 1Code:@ECHO OFF
explorer ms-settings:display
ping -n 2 127.0.0.1 > nul
:VBSDynamicBuild
SET TempVBSFile=%tmp%\~tmpSendKeysTemp.vbs
IF EXIST "%TempVBSFile%" DEL /F /Q "%TempVBSFile%"
ECHO Set WshShell = WScript.CreateObject("WScript.Shell") >>"%TempVBSFile%"
ECHO Wscript.Sleep 100 >>"%TempVBSFile%"
ECHO WshShell.SendKeys "{TAB 6}" >>"%TempVBSFile%"
ECHO WshShell.SendKeys "{DOWN 2}" >>"%TempVBSFile%"
ECHO Wscript.Sleep 100 >>"%TempVBSFile%"
ECHO WshShell.SendKeys "%%{F4}" >>"%TempVBSFile%"
CSCRIPT //nologo "%TempVBSFile%"
EXIT
Thanks M.C.F.C, great solution :rockon:
Thank you very much, just what I was looking for.
Can you write what you have done to solve the problem.
I've already had such a problem. Have solved it in the same way.