ContributionsMost RecentMost LikesSolutionsCalling java class from scriptThis line of code used to work before but i guess after upgrading to tc 9 something broke var respVal = new String(JavaClasses.com_sp_utils_string.NVP.getValueSTATIC(ResponseStr,"&",ResponseNames)); I have added jvm module i have added my jar file in project properties I'm not sure what i need to do with the java classes portion in project properties Please help Re: Sending emails with outlookHi, got it to work. All i needed to do was change to the correct folder on my outlook From this ContactFldr = NS.Folders("Public Folders").Folders("Contacts"); // Original code To This ContactFldr = NS.Folders("Mailbox - Kenneth Rock").Folders("Contacts"); // Working code Re: Sending emails with outlookI have attached the screen shot for how the outlook Application folder looks like in the registry editor ThanksRe: Sending emails with outlookHi Allen I still get the same message "Unable to initialize MS Outlook" "Unable to initialize MS Outlook or its Folders" Sending emails with outlook I am having trouble getting the sample code provided for outlook.js to work. I keep getting the exception "unable to initialize outlook" . I have office 2007 installed and as soon as i run the script outlook seems to be loading on the task bar but execution stops. Does anyone have the sample script working for them ? ThanksSending emails wih outlookI am having trouble getting the sample code provided for outlook.js to work. I keep getting the exception (Whis is logged as a warning in the code) "unable to initialize outlook" . I have office 2007 installed and as soon as i run the script outlook seems to be loading on the task bar but execution stops. Does anyone have this script working for them ? ThanksRe: Write values to specific cells in excel,I will try DB table and Excel Driver as well and see if i need to re-design my test approach i am firly new to this tool . Thanks Re: Write values to specific cells in excel,I plan to use these values to check against what's inserted in the DB for that row in excel. for instance: i have 3 columns in excel named Amount,cardNumber,orderId ** Orderid column is blank since its generated by the app under test the DB table has the same columns as in Excel this time the orderId is inserted by the APP under test my goal was to insert the generated orderId and later use the OrderId field in a select statement to test if Amount and cardNumber from excel matches same fields in the Db table Write values to specific cells in excel,I am getting test data from an excel file (looping through project variables) and wish to write the result for a particular test into a specific column on the same row (in the same excel file) is it possible to do this while looping through the project variables ? //sample code to use for your explanation Project ["Variables"][txType].Reset(); for(; ! Project["Variables"][txType].IsEOF();) { //write or update some excel field for the current row being read Project ["Variables"][txType].Next(); } any suggestions are welcome Thanks Re: SQL parametized insertRobert , it worked after checking it twice. Thanks