ContributionsMost RecentMost LikesSolutionsRe: Is there any way to change title of the exported Log file. Hi, Could you guys please response either this is possible or not. Regards, Anup Re: Is there any way to change title of the exported Log file. Hi, Thanks for your response, but answer is not correct what I'm looking for. The method that you have suggested here is only use to export/save log details and in this method not having any option to modify tab title. Using Log.SaveResultsAs method we can save result with the specified filename and format. Please find attached problematic screen shot, which will be clearer for you to understand what I'm looking for. Regards, Anup Is there any way to change title of the exported Log file. Hi, Is there any way to change title of the Log Details file that we have exported in .mht format. Default title is "TestComplete 10 Log" when we have open exported log details files in browser. I want to manage this file title with my exported log file name. eg. If I have exported my log file with the name of "TestABC.mht" and when open this log file in browser. It should be show tab title "TestABC" not "TestComplete 10 Log" Regards, Anup Re: have access to the name of the current test Hi, You can use this method to get current running script name, but scipt should be running from Project TestItem page. Project.TestItems.Current.ElementToBeRun.Caption Re: How to capture error screen if suddenly error occurs in an application while running TestComplete? Hi, Try to handle event OnStopTest: http://support.smartbear.com/viewarticle/56652/#ID0EZ And within event handle function you can capture screen using method: Sys.Desktop.Picture (ClientX, ClientY, Width, Height, Mouse) and save screen capture on defined location. Re: Returns a LONG integer value created from two SHORT integers. I have already tired but not clicking on same position that click on using PostMessage method. And after convert that two Long value in a single long interger value and when passing that in PostMessageMethod. It's clicking on right position. I have converted that value in my old program VisualTest, It's returing value 28902115 after convert X = 739 and Y = 441. Reagrds, Anup Re: Returns a LONG integer value created from two SHORT integers. Hi, I'm having screen co-ordinates X and Y and want to use that values in a single integer value to pass as a parameter in. PostMessage() method for click on a X,Y co-ordinates. eg. PostMessage (hWnd, WM_LBUTTONDBLCLK, MK_LBUTTON, (739, 441)) where WM_LBUTTONDBLCLK = 515, MK_LBUTTON = 1 and 4rth parameter that I want to convert in a single long interger value. Please suggest me. Returns a LONG integer value created from two SHORT integers. Hi, Is there anyway in VBScript to Returns a LONG integer value created from two SHORT integers. e.g: I have two co-ordinates X and Y and I want to convert these two interger value in a single value. Thanks Solved