Object Mapping different
I have three licences of testcomplete (descktops) in two when I map the object I recive that:
Sys.Process('PCSIS1124').VCLObject('frmPCINF1124').VCLObject('btnNova').ClickButton;
In other when I map recive that
Sys.Process('PCSIS1124').VCLObject('frmPCINF1124').VCLObject('WallpaperRotinaPC1').VCLObject('pcGeral').VCLObject('tsTransferencia').VCLObject('ScrollBox1').VCLObject('Panel1').VCLObject('btnNova').ClickButton;
I'm mapping all of this in same version, same System and same object anyone know what is the problem?
Cus with that I cant run the same project in the systems
Based on your object hierarchy what I guess is,
Sys.Process('PCSIS1124').VCLObject('frmPCINF1124').VCLObject('btnNova').ClickButton;
I'm sure you might not get scroll bar when you got this object hierarchy.
Sys.Process('PCSIS1124').VCLObject('frmPCINF1124').VCLObject('WallpaperRotinaPC1').VCLObject('pcGeral').VCLObject('tsTransferencia').VCLObject('ScrollBox1').VCLObject('Panel1').VCLObject('btnNova');
Have you seen Scroll bar when you got this object hierarchy?
Thanks guys for the help. Today I managed to solve the problem was as follows. We were on two different projects in one on their properties the Object tree model was in flat and the other in tree. Thanks a lot for the help