-
For integer values it works fine.
Thanks,
Senthilkumar.P">HI Friends, I have a function in DLL, which one return the string value, i want to call that dll function from QTP? While calling from QTP it shows the error message, like "Variable uses an Automation type not supported in VBScript: 'Extern.name_return'". Anybody help me how to call the dll function and pass the string value to dll.For integer values it works fine.Thanks,Senthilkumar.P
-
-
-
-
-
myarray(mypara) = "senthil" ' its show the error
How is this possible to pass parameter to array
please help me to solve this problem">HII have a problem in QTP to pass parameter to array.Example:Dim myparaDim myarray(100)mypara = "myname"myarray(mypara) = "senthil" ' its show the errorHow is this possible to pass parameter to arrayplease help me to solve this problem
-
-
-
Dim variable1 (10) - declare the dynamic array using dim
variable1 (1) = "kumar" - store the value in array
variable1 (2) = "chandru" - store the value in array
This is the way i tried, but it show the error message like "Name redefined", Is there any possible options available for this, plz send me.">Hi i am new to VB Scripting, I have a problem to declare an array in QTP. I am using a variable to declare an array which is come in runtime.Example:Dim variable1 - declare the variable using dimvariable1 = "senthil" - assign the value which is come in run timeDim variable1 (10) - declare the dynamic array using dimvariable1 (1) = "kumar" - store the value in arrayvariable1 (2) = "chandru" - store the value in array This is the way i tried, but it show the error message like "Name redefined", Is there any possible options available for this, plz send me.