You may find that you need to dynamically change the text in a header or item. This is a bit tricky in the currently public release, but is made much simpler in the next release.
In the current release, 2.0.111, you need to add a few lines of code to make this work. First of all you need to declare a group in your procedure data embed:
TskI GROUP(POB:TaskInfo) End
This declares a group that you then need modify.
TskI = Outlookbar1.GetTaskInfo(OutlookBar1.Outlookpanel,0) TskI.Title = 'Changed Outlookbar Title' Outlookbar1.SetTaskInfo(OutlookBar1.Outlookpanel,| 0,| TskI)
The first line loads the local group, TaskInfo, with the data from the header or item. The second line sets the title in the group and the third line updates the the header or item. Since this is rather awkward we decided to simplify this down to:
OutlookBar1.SetTitle(OutlookBar1.Outlookpanel,| 0,| 'Changed Outlookbar Title')
To download version 2.0.112, which includes the new SetTitle method, please go to Download Icetips Outlookbar 2.0.112
Arnor Baldvinsson