コード例 #1
0
ファイル: SkypeListener.cs プロジェクト: Zinal001/SkypeLCD
        public void ChangeDBPath(String DBFilePath)
        {
            bool wasOpen = _DB.isOpen();
            if (_DB.isOpen())
                _DB.Close();
            _DB = new SkypeDB(DBFilePath);

            if (wasOpen)
                _DB.Open();
        }
コード例 #2
0
        public void ChangeDBPath(String DBFilePath)
        {
            bool wasOpen = _DB.isOpen();

            if (_DB.isOpen())
            {
                _DB.Close();
            }
            _DB = new SkypeDB(DBFilePath);

            if (wasOpen)
            {
                _DB.Open();
            }
        }
コード例 #3
0
 public void Start()
 {
     _DB.Open();
     UpdateSkypeTimer.Start();
 }