dummzeuch 1582 Posted yesterday at 02:53 PM The registry entry for storing the "Monitor Layout" setting in Delphi 12 contains the string "Allow changing screen on any layout change". WTF? Does that really mean this setting is language dependent? Share this post Link to post
Uwe Raabe 2113 Posted yesterday at 03:05 PM While it is always stored in English even if your IDE is set to any other language, I also think that using such a caption to store the selected option is not that a good idea. As a Delphi developer I would use an enumeration for the setting values and store that in a suitable manner. 1 Share this post Link to post
dummzeuch 1582 Posted yesterday at 04:16 PM 1 hour ago, Uwe Raabe said: As a Delphi developer I would use an enumeration for the setting values and store that in a suitable manner. So would I. If it should be user readable (why?) they could have used the enum name rather than an integer to store the setting. Share this post Link to post