ContributionsMost RecentMost LikesSolutionsRe: HELP!: How to Create a TObject (Delphi) in Test Complete 7 ?Thanks Robert for your quick response, can you please provide some example using ODT, thank you!HELP!: How to Create a TObject (Delphi) in Test Complete 7 ?Hello, I want to know how I can create a TObject from Test Complete, I tried this code but it doesn't work: (I am working with TC7 and with Delphi 5) procedure Test1; var obj: Tobject; begin obj:= TObject(45); end Thanks in advance, Elia. Test1; Re: Unable to read Text property in a TComboBox in DelphiHi Allen, I'm using Delphi 5 and TComboBox with TC 7.52.678.7, thanks in advance!Unable to read Text property in a TComboBox in DelphiHello, I am trying to read the property Text of a ComboBox in Delphi with TC7: ShowMessage(Aliases.Main.fmain.combobox1.Text); and I am getting this error message (pls see attached image): "The property or method does nor exist or it is used incorrectly. you are trying to read a write-only property or to write a read-only property" Thanks, Elia. Cannot access method in Delphi App Hello, I'm new in TestComplete7. I'm not being able to access to a new method I created in a delphi app. I cannot see it from Object Browser Methods (see image attached). What Should I do to make this simple method accesible from TestComplete? Here is the delphi app: type TForm1 = class(TForm) private { Private declarations } public { Public declarations } procedure ShowTest; end; var Form1: TForm1; implementation {$R *.DFM} { TForm1 } procedure TForm1.ShowTest; begin ShowMessage('This is a test for TestComplete7'); end; Thanks for your help. Elia.