private void OnLoad(object sender, EventArgs e)
        {
            _playListForm = new PlayList(this);

            _specIdx  = Options.MainSettings.PlayerSpectrumIndex;
            _playList = new SortableBindingList <PlayListData>();

            lbTitleText.Text  = "";
            lbArtistText.Text = "";
            lbAlbumText.Text  = "";

            playBackSlider.Enabled = false;

            // create a secure timer
            _updateTimer       = new BASSTimer(_updateInterval);
            _updateTimer.Tick += timerUpdate_Tick;
        }
        private void OnLoad(object sender, EventArgs e)
        {
            _playListForm = new PlayList(this);

              _specIdx = Options.MainSettings.PlayerSpectrumIndex;
              _playList = new SortableBindingList<PlayListData>();

              lbTitleText.Text = "";
              lbArtistText.Text = "";
              lbAlbumText.Text = "";

              playBackSlider.Enabled = false;

              // create a secure timer
              _updateTimer = new BASSTimer(_updateInterval);
              _updateTimer.Tick += timerUpdate_Tick;
        }