There may be an issue with Enable Communications between Delphi Add-in and Delphi Application.
There are KB article from MF/HPE to fix this [KM00797992][1] as per the article :
**- Link to the MicDelphiAgent.pas Module to Enable Communications :**
It must be performed the following steps for each application that would be tested.
1) Add the datExtensibilityDelphi folder to the Delphi project search path, or copy the contents of the datExtensibilityDelphi folder to the project folder.
2) Add MicDelphiAgent to the Uses section of the application's project file (project.dpr) as shown in the example below:
program flight;
uses
MicDelphiAgent,
Forms,
Windows;
($R*.RES)
begin
Application.Initialize
Application.Title :='Flight Reservation';
Application.Run;
end.
3) Compile the Delphi project.
Note: If the application includes the TwwDBGrid from InfoPower, it must be added support for this grid as described below.
**Configure Support for TwwDBGrid :**
If the application includes the TwwDBGrid from InfoPower, do the following to enable support for this grid:
1) Add MicWWSupport to the Uses section of the application's project file (project.dpr) after MicDelphiAgent, as shown in the example below:
program flight;
uses
MicDelphiAgent,
MicWWSupport,
Forms,
Windows;
($R*.RES)
begin
Application.Initialize
Application.Title :='Flight Reservation';
Application.Run;
end.
2) Recompile the application.
**- If above does not work, please try reinstall the UFT.**
[1]: https://softwaresupport.softwaregrp.com/group/softwaresupport/search-result/-/facetsearch/document/KM00797992