ContributionsMost RecentMost LikesSolutionsJanus Gridex - Expanding a single groupI am writing in VBScript in TestComplete 8.5 and need to expand a single group in the grid of type GridEx from Janus. The product version of Janus GridEx is 2.0.1208.0. I tried to use 'ExpandRecords' method but that would expand all the groups in the grid. Is there a way that I can expand a single group only? Apart from that, how do I verify that the group is expanded or not? There is no 'Expanded' property. The only way I can think of is using RowCount vs RecordCount. ThanksTracing events triggeredHow can I use AQtime to trace events being triggered when certains actions are performed on the object. For e.g., when I right-click on the column title of a grid object, a menu is popup. I need to find out what events are triggered, from which class the events are triggered and what functions are being called upon trigger of the event. I am using TestComplete V8 on Delphi 2007 applications.Re: Object doesn't support this property or method: Field.AsStringMy codes were based on the following refererence http://www.automatedqa.com/support/viewarticle/14512/?SearchQuery=retrieve tdblookupcomboboxObject doesn't support this property or method: Field.AsString I attempted to run to the sub procedure below in TestComplete but encountered the exception: Object doesn't support this property or method: Field.AsString What could be the issue? -------------------------------------- Sub Unit1 dim dd, field, combo set combo = Sys.Process("Exnet").VCLObject("AccountForm").VCLObject("PageControl1").VCLObject("DetailsPage").VCLObject("GroupBox4").VCLObject("SalespersonCombo") set dd = combo.ListSource.Dataset msgbox dd.RecordCount set field = dd.FieldByName("STAFFNO") dd.DisableControls dd.First msgbox field.AsString dd.EnableControls End Sub ---------------------------------------- combo is a TDBLookupComboBox