ContributionsMost RecentMost LikesSolutionsRe: VDIs not able to find floating license but Desktop are ok Firewall settings of Server where its hosted or the clients which are trying to access it. Sending the screenshots again VDI: Desktop VDIs not able to find floating license but Desktop are ok HI All, We have issue with Floating license that in our organization VDI machine as not able to open the testcomplete because they are not able to find the floating license but desktops are ok. License server is hosted on VDI machine which has both 14 and 15 version of testcomplete installed. 1947 port is open on Server machine Thanks Add CPU, Memory performance counter for specific application Hi, I want to use performance counters like CPU and Memory usage for my application. But when i add them from standard counter they tell overall CPU and Memory of my PC and not my application. And when i try to Use Custom counter i cant see CPU or Memory usage under the Process-> Application. Any idea how can i get these counters set for application specific? Thanks Iterating through data grid tree items and capturing properties values Hi All, We have a data grid and under that there are data records. I can do the name mapping of these elements but they can change dynamically in differernt scenarios so i will end up mappings hundereds of elements. So I Iwant to iterate through these records which are created dynamically and caputre the properties values. So in attached example I have tree whcih has 3 records. If someone can give me idea or related code snippet of how to iterate through these records and property values it will give me head start. Thanks A Adding variable to namemapping Hi All I am passing the parameters in the function and use that in the namemapping. Val1 is working but when using val2 its not getting the value from that property. Is this the correct way to Concat( Highlighted in red) ? function FXConnectBookedDataFwdClientAllIn(val1,val2) { val1= aqConvert.VarToInt(val1); var val = vGetPropertyVal(WGrd_NetDataGrid.Items.Item(0).Forwards.Item(0).Item(val1)+"."+val2,'Value') return val } Multiselect Rows in table Hi, I have scenario where I want to multiselect 2 rows (One current highlighted in black and other its previous row). I don't want to hard code the values for the rows from object browser as it may change but it will always be current highlighted row and second its previous row which i want to multiselect. Is there any function for it? See attached. A Runtime error on adding working days to current date Hi Guys, I have written a method to add working days to current date but its throwing an runtime exception while running below code function addWorkDaysToDate(fromDate, days) { var count = 0; while (count < days) { fromDate.setDate(fromDate.getDate() + 1); ----------------------------------------------Breaks on this line if (fromDate.getDay() != 0 && fromDate.getDay() != 6) // Skip weekends count++; } return fromDate.toDateString(); } Value i am passing for example is fromDate: 02/02/18 and days: 4 Please assist on what is incorrect SolvedRe: Pass parameter vale in Aliases? Hi, Please see the error attached. Is maybe because the row and col values are Integer types but I am passing the String type? Not sure Re: Pass parameter vale in Aliases? Tried this but still getting the runtime error as 'Type mismatch' Pass parameter vale in Aliases? Hi, I am trying to pass the value through parameter in Aliases but its throwing runtime error. Please help function FXConnectRFSClientAllin(Val) { var intValue= Aliases.jp2launcher.JideSystemShell.Orders.exec_orders.RootPane.null_layeredPane.null_contentPane.SessionDetailsTabbedPanel.Panel.JideTabbedPane.BusyComponent.JXLayer.MultiOrderCardPanel.RFS_Competitive.JS_RFSOrderDetails.wValue(Val) return intValue } Value i am passing is '0,15' A Solved