Example #1
0
        public FormMain()
        {
            InitializeComponent();
            InitializeComponent2();

            _MainServer_ = new HttpListener();
            _MainCompiler_ = new XCompiler();
            this._LogsFilePath = Application.StartupPath + "\\Logs.txt";
            this._ErrorFilePath = Application.StartupPath + "\\Errors.txt";

            LoadServerConfiguration();

            this._StreamerEnabled = Servconf.EnableStream;
            this._ControlerEnabled_ = Servconf.EnableControler;

            LoadPrefixes();
            LoadFiles();


            LoadLanguages();
            LoadSettings();


            SetStatue(""); 

        }
Example #2
0
 public FrmSettings(XCompiler _MainCompiler_)
 {
     InitializeComponent();
     this.LangList = _MainCompiler_;
 }