ContributionsMost RecentMost LikesSolutionsMTM Integration with Testcomplete 10Hi, I would like to understand the integration/association of TestComplete scripts with Microsoft Test Manager. 1) Do we need any specific add ins. 2) Will it be associated through Visual Studio or directly. 3) How I can associate coded UI scripts with MTM test cases 4) Will there be any way to updated coded UI scripts in MTM automatically after assertions. It would be appreciated if I can get answer to above questions and steps to solutions. Invalid Use of Null error while reading data from an Excel sheetHi, I am getting an error saying "Invalid Use of Null" while reading data from Excel sheet, I am getting this error for the Cell's fromat type Number, whereas I am able to read the data from other formats with any problem. Following is the piece of code I am using to read the data from Excel sheet. Sub MainTest Set DataDriver = DDT.ExcelDriver("C:\\Scenario.xls","Scenario1") While Not DataDriver.EOF MsgBox(DataDriver.Value("INPUTDATA")) DataDriver.Next Wend End Sub Regards, Abdul Re: .Vbs file to DLLThanks Alex . Regards, Abdul Re: .Vbs file to DLLThanks for your reply !!! If I obfuscate .vbs file, TC will be able to read and perform the operation without ant issues? Regards, Abdul.Vbs file to DLLHi, We don't want to share or expose the Generic functions written in .vbs file and want to convert it to dll file and perform the operation using the created dll. Is there a way to accomplish this task? Regards, Abdul Re: Adding Linked Libraries At Run TimeTanya, I have used your code to load the library file in runtime, But In QTP I was able to see the loaded Library . Could you please let me know where can i find the loaded Library in Testcomplete 7.52 ? Regards, Abdul Re: QTP Scripts execution using Test CompleteSantosh, You can do that as Testcomplete supports Vb scripts, You require to tune the scripts and understand how TC works . Navigate through TC help file. Regards, AbdulRe: ObjectType from AliasesI have been using Test Complete 7.52 , We are Generating a Framework using TC and Fetching ObjectType from Aliases for every object using script is a real challenge . Waiting for a clue to fix this issue.Re: How to get the hierarchy of the individual objects from the Aliases Hi All, I have found a solution for the question I have raised. Sub GetNextAlias(AliasObject,Parent) Dim iteratorProperties Dim iteratorProp Set iteratorProperties = aqObject.GetProperties(AliasObject) While iteratorProperties.HasNext Set iteratorProp = iteratorProperties.Next 'ValueType 29 appears to correspond with other objects from the name mapping or alias trees If(iteratorProp.ValueType = 29) Then Log.AppendFolder(iteratorProp.Name) '' MsgBox(iteratorProp.Type) Hierarchy = Parent&"."&iteratorProp.Name Temp = "Var" & iteratorProp.Name &" = " & Hierarchy Call LogText(Temp) Call GetNextAlias(aqObject.GetPropertyValue(AliasObject,iteratorProp.Name),Hierarchy) Log.PopLogFolder End If Wend End Sub Sub test() Log.AppendFolder("Aliases") If(aqFile.Exists(sPath)) Then aqFile.Delete(sPath) End If Call GetNextAlias(Aliases.Sys,"Aliases.Sys") Log.PopLogFolder End Sub Regards, Abdul ObjectType from AliasesHi, Is there a way to get the ObjectType of each and every Object from Namemapping Aliases? Regards, Abdul