delphi - Control IDs in Java/SWT application -
delphi - Control IDs in Java/SWT application -
i have third-party application , need read values of controls utilize them in own application developed in delphi. other application runs on windows , written in java using swt framework. unfortunately (control) ids of controls need read values different everytime start third-party application. seems java/swt framework generates new windows/control ids each time ui of application created. there other identifier use?
you can utilize windows properties id persistent.
the name of property swt_object_index:
nprop := getprop(handle, 'swt_object_index');
the homecoming value of getprop() id of window. handle handle control. however, need go through kid windows find command id looking for. please note ids alter if application updated.
java delphi swt
Comments
Post a Comment