Using 2013.1.220.40 version of RadBrowseEditor, I don't seem to be able to get the ApplicationSettings binding to work properly. My only choice is to bind the "Text" property, but the property that contains the path is "Value". Am I doing something wrong?
For now I've used this as a workaround:
On FormLoad or any time the settings are refreshed
And when the user clicks the Save button
For now I've used this as a workaround:
On FormLoad or any time the settings are refreshed
RadBrowseEditor1.Value = My.Settings.PMSFolder
And when the user clicks the Save button
My.Settings.PMSFolder = RadBrowseEditor1.Value
My.Settings.Save()