Question

In .net you can acces the Properties of your application trough code. How can you do the same in Oxygene / delphi prism ?

Directory.GetFiles(Properties.Settings.Default.
Was it helpful?

Solution

You are almost there, to access the settings of your application, you must add the YourAppNameSpace.Properties namespace to your uses clause and then access the setting on this way

Settings.Default.MySettingName

Or using a full qualified name, like so :

YourAppNameSpace.Properties.Settings.Default.MySettingName
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top