FS Traffic Control Center still doesn't work
-
That's a pity. The software works well for other users. If it wasn't working properly for you two years ago then the update won't have changed that. Still worth contacting Just Flight Support again to see if that error message has turned up in the intervening time.
-
Hello Hartmannx,
I think you're German. The programmers are apparently English and didn't consider that there are users in other countries with PCs whose native language is NOT English and who therefore, for example, have different decimal symbols in their regional settings. There are now exactly two options:1.) Change the decimal symbol in -> Control Panel -> Customize Format -> Decimal symbol from "," to ".".
2.) Create a startup script "start.bat" in the root directory of the traffic control center with the following content:
@echo off
reg add "HKCU\Control Panel\International" /t REG_SZ /v sDecimal /d . /f
reg add "HKCU\Control Panel\International" /t REG_SZ /v sThousand /d , /fstart trafficControlCentre.exe
ping 127.0.0.1 /n 2 > NULLreg add "HKCU\Control Panel\International" /t REG_SZ /v sDecimal /d , /f
reg add "HKCU\Control Panel\International" /t REG_SZ /v sThousand /d . /fThe program must then be started using start.bat, which temporarily rewrites the registry.
Have fun