Hi,
I use ITH 3.3
I need in our application the task dialog. And that was the only reason we bought ITH.
This is the code how I use it:
OutlookSession = new OutlookSession();
TaskCollection taskCollection = session.Tasks.Items;
Task task = taskCollection.AddNew();
task.Subject = "xxx";
taskCollection.Add(task);
task.ShowDialog();
session.Dispose();
At the first view it works. But now the problem:
The task dialog is closed. Then our application is turned in background and
if we try to bring it in front our application does not appears. Only 'Tasks' appears at the top of the window (instead of start)
The only was to start now the application is to stop it and start it again.
Do I use it in a wrong way?