Hi, i am developing a outlook addin in c#, heres my startup:
private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
//adds the new issueTopMenu
//Search the menu and delete if found
RemoveMenubar();
//adds the panel
AddPanelToExplorer();
//Method to create new menu
AddMenuBar();
}
How can i do it to run on a thread, because it access to a webservice to get some data, and when outlook start it freezes until it obtain the data, and i want to eleminate that freeze time.