Forum Discussion

Pavan3's avatar
Pavan3
Occasional Visitor
2 years ago

Need Help regarding Neo Hex Editor with TestComplete Ver. 14

I want to edit the hex file using Neo Hex Editor, but TestComplete is not able to go particular memory address of the hex file.

Object Spy is not working inside Neo Hex editor.

It is working on testcomplete version 11 but not on testcomplete version 14.

I am using the following script :

 

var ClearBits = "00";
var SetBits = "ff";

 

for (ErrHistInfo_EEPROM_Address=998;ErrHistInfo_EEPROM_Address<1000;ErrHistInfo_EEPROM_Address++)
{
Aliases.HexFrame.wndHHDHexEditor4MainWindow.CRocketChildFrame.HexEditorChildFrame.HexEditorChildFrameSplitter.ATL000007FEE8F2A0B0.ViewNavWindow.ComboBox.SetText(ErrHistInfo_EEPROM_Address);
Aliases.HexFrame.wndHHDHexEditor4MainWindow.CRocketChildFrame.HexEditorChildFrame.HexEditorChildFrameSplitter.ATL000007FEE8F2A0B0.ViewNavWindow.ComboBox.Edit.Keys("[Enter]");
Aliases.HexFrame.wndHHDHexEditor4MainWindow.CRocketChildFrame.HexEditorChildFrame.HexEditorChildFrameSplitter.ATL000007FEE8F2A0B0.Keys(ClearBits);
}

 

Please Help me.