
Originally Posted by
bine ye
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.
If it works... 

Originally Posted by
MaxiShagilko
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!
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.
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
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 "{DOWN 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 1