Advatel Company
Posts: 11
Joined: 2006-05-15
|
Just recently bought the ADX VCL components and have developed a toolbar for Outlook.
We have found that when an Inspector Toolbar is added with Word as the editor it takes around 5 to 10 seconds to load up the window. When the DLL is unregistered or not using word as the editor the Inspector loads like normal.
Thankyou in advance for helping. |
|
Dmitry Kostochko
Add-in Express team
Posts: 2887
Joined: 2004-04-05
|
Hi,
Try to add the following code to your add-in. Please let me know about the results in any case.
procedure TAddInModule.adxCOMAddInModuleAddInInitialize(Sender: TObject);
begin
[B]FastCommandBarSearch := True;[/B]
//
end;
|
|
Advatel Company
Posts: 11
Joined: 2006-05-15
|
Thankyou for that, it has solved the issue. |
|