0
private void btnDel_Click(object sender, EventArgs e)
{
OpenPop.Pop3.Pop3Client PopClient = new OpenPop.Pop3.Pop3Client();
PopClient.Connect("mail", 110, false);
PopClient.Authenticate("me", "me",
OpenPop.Pop3.AuthenticationMethod.UsernameAndPassword);
DeleteMessageByMessageId(PopClient, selectedemailindex.ToString());
// Here i want to update the text file and the listview by deleting the line using the index number(selectedemailindex).
}
ListView控件變量是lvnf。 並且文本文件存儲在變量emailsIDSFile中。 用於刪除文本文件中行號並通過索引刪除ListView中的行的索引號存儲在selectedemailindex中。如何從文本文件中刪除行號?並通過索引號從ListView中刪除項目?
什麼文本文件?什麼列表視圖?你試過了什麼,你有什麼問題? – poke