else if (nPlayMode == 2) //다음재생모드일때
{
nIndex = listBox_PlayList.SelectedIndex++;
if (nIndex > nCount) //인덱스가 목록에 추가된 곡리스트보다 클 때
{
MessageBox.Show(\"곡 재생이 끝났습니다\");
nPlayMode = 0;
m_Audio.Stop();
m_Audio.Close();
}
else
{
//일시정지체크
if (!bCheckPause)
{
if (m_Audio != null)
{
m_Audio.Stop();
m_Audio.Close();
}
m_Audio = new Audio();
//장치오픈
if (!m_Audio.Open((string)aFilePathList[listBox_PlayList.SelectedIndex]))
{
MessageBox.Show(\"재생할 수 없는 곡입니다\", \"재 생\", MessageBoxButtons.OK, MessageBoxIcon.Stop);
return;
}
//제목창 출력
textBox_Title.Text = listBox_PlayList.SelectedItem.ToString();
}
m_Audio.Play();
timer_status.Start();
bCheckPause = false;
}
}
}
}
현재코드상황인데...ㅋㅋ
이걸 돌리면 이런 에러가 뜨넹....ㅠㅠ
어떻게하지?
댓글 0