Delphi Object Identification
Hi,
I am using the Trail version of Delphi.
Delphi is identifying all the objects,however I am not confident when it records the operations of button and grid objects.
The click operation is recorded with (x,y),is it expected?
advPanel.Panel1.LogonButton.Click(60, 11);
even it is same for grid operations
tsfDataPagesNoteBook.Click(118, 15);
if any co-orinates changes in future? how it will work?
Regards,
Rasool
It's not mandatory. But, as per the support article above, some (native) properties and methods will not be available without a debug enabled compile.
I'm not familiar with a "tsfDBGrid". Sounds like it may be a custom/derived class.
But I can tell you I can't fully interact with some of my Delphi DB linked grids (I think my application uses about 3 different DB grid types) without debug info. The DataSet/RecordSet object is a Debug property for some of mine and without that, I can't get much useful done with the grid.
If they won't let you compile it, you may need to ask them to provide you with a debug enabled build if you want full access to all the properties and methods. There is no way round it.