本帖最后由 ljx09195117 于 2010-03-08 23:48:58 编辑

解决方案 »

  1.   

    http://blog.csdn.net/wchm01605/archive/2008/09/14/2915623.aspx
    参照这个就可以了,相当的全
      

  2.   

    http://msdn.microsoft.com/en-us/library/dd797767(VS.85).aspx
    一些声卡不支持定位,建议使用软件来实现播放。
      

  3.   

    请问是用这个控制吗??
            public bool SetMusicPos(int Position)    
       
            {    
       
                string MciCommand = string.Format("seek NOWMUSIC to {0}", Position );    
       
                int RefInt = mciSendString( MciCommand , null, 0, 0);    
       
                if (RefInt == 0)    
       
                    return true;    
       
                else   
       
                    return false;    
       
            }