public void ChangeDBPath(String DBFilePath) { bool wasOpen = _DB.isOpen(); if (_DB.isOpen()) _DB.Close(); _DB = new SkypeDB(DBFilePath); if (wasOpen) _DB.Open(); }
public void ChangeDBPath(String DBFilePath) { bool wasOpen = _DB.isOpen(); if (_DB.isOpen()) { _DB.Close(); } _DB = new SkypeDB(DBFilePath); if (wasOpen) { _DB.Open(); } }
public void Start() { _DB.Open(); UpdateSkypeTimer.Start(); }