protected void InitializeAsNewProfile(string aPath)
        {
            Profile             = new RsProfileConfig();
            base.ProfileXmlFile = aPath;

            InitializeCollections();

            Profile.Version  = RsApplicationInfo.VersionString;
            Profile.Settings = new RsSettingsConfig();

            CRSInitLang lLangDlg = new CRSInitLang();

            Profile.Settings.Locale = new RsLocaleConfig();
            lLangDlg.Execute();
        }
 public RsProfileManager()
 {
     Profile = new RsProfileConfig();
 }
 public virtual void OpenProfile(string aProfile)
 {
     ProfileXmlFile = aProfile;
     Profile        = ((RsProfileConfig)(XmlTools.DeserializeFromFile(aProfile, typeof(RsProfileConfig))));
 }