ContributionsMost RecentMost LikesSolutionsRe: How to send e-mails? Hi, I am using Lotus notes. Is there any solution for my problem? ThanksHow to specify a Timeout limit through scripts? Hi, Without using Project TestItems (Timeout) property, is there any other method through which we can run a particular routine for a specified time interval. Is it possible to specify a time limit through code? I am using Utils.Timer property but getting a warning message. I am using TestComplete Version 6. The code I am using is: var test = Utils["Timers"]["Add"](20000, Unit1["abc"](), true); The warning message is: The unit that contains the timer procedure "" is not specified. No timer procedure specified. The timer will be disabled. Is there any solution for this? Thanks and Regards, AmitRe: How to validate a waveform on a screen?Thanks David. Will work on it. AmitRe: How to send e-mails?Hi, This is the code I am using: function SendEmail() { if (BuiltIn["SendMAPIMail"]("Amit", "amit10.t@tcs.com", "Notification", "Hello Amit, This is a mail from Test Complete")) Log["Message"]("Mail was sent"); else Log["Warning"]("Mail was not sent"); } I am getting a warning message "Mail was not sent". My working area provides internet access only to a few limited sites, relating to the organisation. Is this the reason for the failure in sending? How to validate a waveform on a screen?Hi, Can anyone suggest me a method to validate a window displaying continuously changing waveforms? I thought of using region checkpoint, but due to continuous change in waveforms, there is a change in images per second. So region checkpoint is not going to help in this situation. Is there any other option? ThanksRe: How to send e-mails?Hi, I have tried BuiltIn.SendMAPIMail() function and it is giving an exception. I have also tried to do the same using CDO but facing the same problem. My Test Complete version is 6.0. Does it support BuiltIn.SendMail() functionality? ThanksHow to send e-mails?Hi, I want to know whether I'll be able to send emails from scipts if MS Office is not installed at my system? I have gone through the help section and tried BuiltIn.SendMail functionality but am unable to send any mail. What are the requirements or settings I have to chnage on my system in order to send the mails? Thanks