Nơi chia sẻ tài liệu và đồ án công nghệ thông tin.Thủ thật vi tính,SEO Blog.Các bài viết về tình yêu,cuộc sống, Chia sẻ các chương trình khuyến mãi giảm giá
bạn cho mình hỏi 2 file AxInterop.WMPLib.dll & Interop.WMPLib.dll không biết 2 file đó dùng để làm gì và add vào chương trình như thế nào. vì khi mình add Windows media palyer của visua studio và thì nó đã có sẳn 2 cái AxWMPLib và WMPLip trong refences cảm ơn bạn nhiều
2 file này để hỗ trợ cho mình một số thư viện (using .....), một số hàm,để xây dựng dc ctrình này.2 File này đã dc add refences. vào project rồi. nên bạn thấy nó có sẵn là đúng rồi.
bạn cho mình hỏi 2 file AxInterop.WMPLib.dll & Interop.WMPLib.dll không biết 2 file đó dùng để làm gì và add vào chương trình như thế nào. vì khi mình add Windows media palyer của visua studio và thì nó đã có sẳn 2 cái AxWMPLib và WMPLip trong refences
ReplyDeletecảm ơn bạn nhiều
2 file này để hỗ trợ cho mình một số thư viện (using .....), một số hàm,để xây dựng dc ctrình này.2 File này đã dc add refences. vào project rồi. nên bạn thấy nó có sẵn là đúng rồi.
ReplyDeleteThis comment has been removed by the author.
Deleteanh ơi lệnh đọc tên của ca sỹ trong bài nhạc như thế nào ạ . tks a
DeleteThis comment has been removed by a blog administrator.
ReplyDeleteanh ơi cho em hỏi lệnh đọc tên ca sỹ trong bài nhạc . như thế nào ạ . tks a
ReplyDeleteTrong form frmPlaylist có hàm:
Deletepublic void OpenPlayList(string file,bool play)
{
string sysList = null;
System.IO.StreamReader rd = new System.IO.StreamReader(file);
sysList = rd.ReadToEnd();
rd.Close();
if (!sysList.Contains("^_^PlayList^_^|"))
{
MessageBox.Show("Không thể tải danh sách nhạc!.", "Lỗi", MessageBoxButtons.OK);
}
else
{
sysList = sysList.Replace("^_^PlayList^_^|", string.Empty);
string[] files = sysList.Split('|');
if (files.Length > 1)
{
dtPlayList.Rows.Clear();
foreach (string item in files)
{
if (!string.IsNullOrEmpty(item))
{
string[] temp = item.Split('>');
if (temp.Length >= 5)
{
string path=temp[0];
if (File.Exists(path))
{
DataRow r = dtPlayList.NewRow();
r["SourceURL"] = temp[0];
r["Name"] = temp[1];
r["Author"] = temp[2];
r["Time"] = temp[3];
r["isVideo"] = string.Equals(temp[4], "True") ? true : false;
dtPlayList.Rows.Add(r);
}
}
}
}
Setgrid();
if (play)
{
if (grdPlayList.Rows.Count > 0)
{
idx = 0;
string SourceURL = grdPlayList["SourceURL", idx].Value.ToString();
bool isVideo = (bool)grdPlayList["isVideo", idx].Value;
PlayNow(SourceURL, isVideo);
}
}
}
}
}
đó là đoạn code xử lý đọc tên ca sĩ đó bạn