Курсовая работа: Разработка приложения клиента электронной почты
// listBox1.Items.Clear();
listView1.Items.Clear();
//char c;
string [] contents = System.IO.Directory .GetFileSystemEntries(dir + @"\messages\");
foreach (string s in contents)
{
if ((s.IndexOf("profile") == -1))
{
for (int z = s.LastIndexOf("\\")+1; z < s.Length; z++)
{
char c = s[z];
strin += c;
}
string content=ReadMess(strin, 2);
string from = FromMess(content);
ListMess(strin,Theme(content), from);
// listBox1.Items.Add(strin);
strin = "";
}
}
}
public string ShowMes() //процедура показа выделенного сообщения
{
string resultValue = "";
if (listView1.SelectedItems.Count == 0)
return resultValue ;
string x = listView1.SelectedItems[0].Text;
string content = ReadMess(listView1.SelectedItems[0].Text, 1);
// ListMess(x,Theme(content), FromMess(content));