ContributionsMost RecentMost LikesSolutionsUnable to execute Reset on Windows 2008Hi, I have a very simple function to read the content of a text file. function readFromFile(ParamName) { var config = Project.Variables.LocalConfig; config.Reset(); for(; !config.IsEOF();) { var Name = config.Value("Name"); if (aqString.ToUpper(ParamName) == aqString.ToUpper(Name)) { Log.Message("'" + ParamName + "' = '" + config.Value("Value") + "'"); return config.Value("Value"); } config.Next(); } } This function working fine on XP, Win 7 and Win 8. It failed on Windows 2008 at config.Reset(). I turned off UAC, firewall and current user is in administrators grounp. Found this message in Additional Information tab "The specified module could not be found". We are using TestExecute 9.0.1. Any help is much appricated.Run test items in a groupHi, I created few groups in TestComplete project, if I selected a group and click "Run Selected Item" menu, TestComplete will execute the test items in the group. Just wonder how can I use command line to do it? By passing the group name to TestComplete and it will execute the items in that group. Thanks for your help in advance.Unable to find the objectHi, I'm using TestExecute with TDS files for my Automation tests. When I use TestExecute to launch my TestApp it failed because the debug info wasn't load and I get "Unable to find the object xxxx". These tests run 3 times per day, sometime all tests failed but sometime all passed or only 1 passed. There is no particular pattern when it failed, it just look like timing issue to me. I can confirm that all TDS files are in the right places and I'm using TestExecute 8.6. Is there a timer in TestExecute when it takes too long to loading TDS file and just skip it? If yes, can we change that value? Thanks for your help in advance, JeffADO error messageHi, I'm trying to use ADO to connect Oracle database but somehow when I try to use Open method, TC failed with the following message An exception occurred in the "xxx" unit at line xx: Unspecified error Just want to know is it possible to get the original error message from Oracle? I'm using the example from this link http://support.smartbear.com/viewarticle/11906/ except I connect to Oracle. Regards, PuyoRe: Is there a function to wait for process unit it finishedThanks Alex, it works for me now. Re: How to save log after each Run Project Thanks Irene, Do you mean to call the helper routine for each Test? Is there a event similar to OnStopTest but for whole process? Re: How to save log after each Run ProjectThanks for quick reply. We actually we don't have main function/procedure . We execute test cases from TestItems page. Is there any event that will trigger before TC close? I want to save log before TC close. ThanksHow to save log after each Run Project Hi guys, I want to save TC's log file using Log.SaveResultsAs at the end of Run Project(F5). What event should I use? I'm currently using OnStopTest event but it will save the log file every test is over. I want to do it at the end of the run project. Any idea? Thank you very much for your help in advance. puyo Is there a function to wait for process unit it finishedHi there, Just want to know is there a function to wait for a process until it finished. I would like to close a process and wait until it gone and do something else. Delay and waitProcess(xxx).Exists doesn't work for me. Thanks PuyoRe: How to Uninstall application fro add remove programs.Thanks Irina for quick response for this. That is MSI window and it put a class number in the name. The following is what I get from Object Spy Window("#id", "product name", 1) and I believe the id number change every time when uninstall. The only propery I can use is WndCaption, that is the name of the product. Btw, there is another problem in some Windows 7 environment when execute ClickItem var programsList = wnd.FindChild("WndClass", "SysListView32", 20) programsList.ClickItem(applicationName, 0); <= I get "The window does not respond." error in testComplete result log. and the following messge in description The window with the 0x000303b4 handle exists but did not respond during the auto-wait timeout (10000 ms). Try increasing the 'Auto-wait timeout' project property. Tested object: Sys.Process("Explorer").Window("CabinetWClass", "Programs and Features", 1).Window("ShellTabWindowClass", "Programs and Features", 1).Window("DUIViewWndClassName", "", 1).Window("DirectUIHWND", "", 1).Window("CtrlNotifySink", "", 1).Window("SHELLDLL_DefView", "ShellView", 1).Window("SysListView32", "FolderView", 1) Incress auto-wait timeout doesn't help. Thanks