4
Answers

How do I import emails in Outlook 2011 from mac mail

Rex Hood

Rex Hood

11y
1.6k
1
I have troubles in operating mac mail, so I bought Microsoft Outlook 2011 for Mac.
I have successfully transferred the contacts but I am unsuccessful in migrating the emails.
I have thousands of mails arranged in different folders, all I want is to transfer all the folders along with the folders.

Would someone have good news for me and find a way to transfer all the mails with their categories from Apple Mail to Outlook 2011 for Mac ?

It would be nice and to receive a positive answer.

Thank you for your help
Answers (4)
0
Ranjit Powar

Ranjit Powar

NA 8.1k 496.6k 7y
Use this code in selected index changed event of combobox
 
for(int i=0; i<dataGridView1.Rows.Count;i++)
{
   dataGridView1.Rows[i].Cells[6].Value=comboBox1.SelectedValue;
}
 
 
Accepted
0
Mayank Jani

Mayank Jani

NA 154 3.8k 7y
Hii Ranjit,
thank you for your reply. there is just one little change I have to do that is instead of 'combobox1.SelectedValue' I added 'SelectedItem'. it is because when I used SelectedValue, and changed the value from combobox, all the values went blank...
 
'combobox1.text' also works.
 
anyway, my problem is solved.
thank you once again.
 
Mayank Jani