Ejemplo n.º 1
0
        public void InitializeConfiguration()
        {
            try {
                this.xmlConfiguration = new XMLConfig(INIT_FILE_NAME, false);
            } catch (Exception) {
                //Create the config file
                this.xmlConfiguration = new XMLConfig(INIT_FILE_NAME, true);
                this.xmlConfiguration.Settings["lastsetlistfile"].Value = DEFAULT_XML_SETLIST_FILE;
                this.xmlConfiguration.Save(INIT_FILE_NAME);
            }

            this.xmlSetlistFilename = this.xmlConfiguration.Settings["lastsetlistfile"].Value;
        }
Ejemplo n.º 2
0
        public void InitializeConfiguration()
        {
            try {
                this.xmlConfiguration = new XMLConfig(INIT_FILE_NAME, false);

            } catch(Exception) {
                //Create the config file
                this.xmlConfiguration = new XMLConfig(INIT_FILE_NAME, true);
                this.xmlConfiguration.Settings["lastsetlistfile"].Value = DEFAULT_XML_SETLIST_FILE;
                this.xmlConfiguration.Save(INIT_FILE_NAME);
            }

            this.xmlSetlistFilename = this.xmlConfiguration.Settings["lastsetlistfile"].Value;
        }