小弟也是用的这两句
if mediaplayer.position=midaplayer.length then
mediaplayer.play;
这句可以用,可是我要播放下一曲,怎么办呢?
我是这样写的,请兄台指教
c:=c+1;//c是一个整数型,
d:=ListBox1.Items.Count-1;//我将要播放的文件ListBox1控件中,
if c<=d then
//以防出错
if masplayer.position=masplayer.length then
begin
MasPlayer1.filename:=ListBox1.items[c];
slabel.caption:=ListBox1.items[c];
MasPlayer1.open;
MasPlayer1.play;
end;
期中Masplayer1就是mediaplayer
请指教!