Hello,
As far as I know it, the MCAB read/writes from the file app.config. Is there
a way for MCAB to read/writes file located in the user's directory? So each
user can have his/her own application setting. Is this possible to do so
using MCAB?
thanks,
richlm - 20 Feb 2004 11:01 GMT
The current version of CMAB does not appear to support this
A 1 line change to the source of XmlFileStorage.cs is all that is required
Change line 71 fro
_applicationDocumentPath = Path.GetFullPath( _applicationDocumentPath )
t
_applicationDocumentPath = Path.GetFullPath( System.Environment.ExpandEnvironmentVariables(_applicationDocumentPath ) )
richlm - 20 Feb 2004 11:11 GMT
... of course the path reference in app.config should now be something like path="%USERPROFILE%\myconfig.xml"