ContributionsMost RecentMost LikesSolutionsRe: i create a condition like if(a != b || b != c ) Hi , control should go to ELSE block. It cannot go to IF block. it evaluates to false || false which is false. Re: Test Execute License Manager Administration hi sree, If you go to Products tab, you can find the Features link for TestExecuteX(X is version you are using). If you click "Features", you are shown with "Features" page. Now observe the no of rows for in the page. The number of rows(for ex: 4) is the no of features your TestExecute has. So for every instance of TestExecute you open, 4 sessions are created in "Sessions" tab. If you have 35 TestExecute licenses for 4 features, you should basically have (35*4) entries in the sessions tab is all are used at once. In other way, Number of entries in Sessions tab divided by 4 will give you number of licenses actively used. #of Licences used = (No of sessions)/(No of sessions created per launch). Hope this helps. Re: Test Execute License Manager Administration Hi sree, Open your browser and hit below Url http://xxxxxxxx:1947/_int_/sessions.html where xxxxxxxx is the systemName or systemIPAddress of license server machine .. Re: If there any option to deleting Log Files Hi pradeep, If you see the delete code aqFileSystem.DeleteFolder(Log.Path, true), it is the path i.e folder itself (\Log\17-07-2015_10_04_09_278) we are deleting with all the subfolders and files. not any specific file. I can suggest you to debug this variable "Log.Path" and see if the path is really the path mentioned in the error, And also do you have the permissions for deletion from that location. This is an irrevalent error to the situation, This is coming from different source. Please let me know the outcome. Thanks. Re: Filter out events from the log Hi, what tanya means it include the Log.Enabled=false inside the OnLogEvent event. i.e. use below function GeneralEvents_OnLogEvent(Sender, LogParams){ Log.Enabled = false; } This should work for you. This can also be made sure like function GeneralEvents_OnLogEvent(Sender, LogParams){ Log.Enabled = false; } function GeneralEvents_OnLogMessage(Sender, LogParams){ Log.Enabled = true; } hope this helped Re: What does Exit Code 1001 mean? Hi, I believe this is not a testcomplete exit code. I suspect this is a standard windows error code for unsufficient system resources. Re: If there any option to deleting Log Files Hi, You can use the below code. function GeneralEvents_OnStopTest(Sender) { try{ aqFileSystem.DeleteFolder(Log.Path, true); }catch(ex){ Log.Warning("Error in deleting the logs...!" + ex.description); } } However this will leave a <unspecifiec log> entry in the "TestLogs". This is a dangling pointer. This can be removed or this will disppear on closing and reopening the testcomplete. Re: TC 10.60 - Error: The object invoked has disconnected from its client Hi, Can you please post the function for more information so that community can help... small hint: If it VBScript you are using then you have to assign the return_value to the function name to recieve at the caller end. Re: Use on screen objects value as part of a SQL query to validate existence in DB. please have a look at below post. It might help http://community.smartbear.com/t5/Getting-Started-with/Connecting-to-a-MYSQL-database/m-p/102038#M20383 Re: Difference between using Sys.Keys or TestObj.Keys hi, Sys.Keys: send the key strokes to system i.e the active GUI component visible and active on your desktop. Ex: If you want your browser to run in a full screen mode. You have to activate the browser and sendKeys F10. i.e. bring the browser window to the foreground on your desktop and press F10 Testobj.Keys : send the keystrokes to the runtime object "Testobj". Ex: you have a button on your application which opens a different edit page for different edit options. Say your "Edit" button on pressing key Cltr+E gives a normal edit page. where are Ctrl+E+A gives you a admin options edit page. Then you use Testobj.Keys feature. hope this helps you. thank you.