ContributionsMost RecentMost LikesSolutionsRe: SWbemLocator Not FoundHuh. It looks like I had a JScript syntax error on one of the other files in the project. Onces I fixed that, everything just worked, no more error.Re: SWbemLocator Not FoundNope, same problem. A little more detail about the problem: The error message only displays the first time I try to autocomplete inside of a function call (like trying to get autocomplete to finish ba to bar in foo( ba ) ). Additionally, the error message only appears once. When trying to autocomplete a function call (like foo in fo ), an old outdated list of functions appears, like the autocomplete has not looked up the latest set of functions.Re: SWbemLocator Not FoundThat was my next move :-) I'll give that a try and let everyone know how it works. AngeloSWbemLocator Not FoundHello everyone, I was using TestComplete 8.5 and the autocomplete feature in the IDE stopped working and gave the error message: Not Found SWbemLocator wmiCode.vbs Line 440 Column: 2. Plug-in WMI Object 1.1 by AutomatedQA Corp. Location C:\Program Files\Automated QA\TestComplete 8\Bin\extensions\ScriptExtensions\AQAScriptExtensions.tcx. I saw that 8.6 was avaliable so I upgraded and the problem still persisted. Then I ran Repair from the 8.6 installer, still the same problem. Then I copied the ScriptExtensions\ folder from a coworker who just installed 8.6 and the problem still persisted. I've also tried enabling and disabling the WMI script extension from the File > Install Script Extensions... menu without success. Has anyone else had this problem or have any idea how to fix? Thanks, AngeloRe: Reading text from excel file while keeping formatting using JScriptThat worked perfectly. Thanks!Reading text from excel file while keeping formatting using JScriptHello, I'm trying programmatically trying to read some data from an Excel file. My code is in JScript and based on the example in the TestComplete help file (see below). The problem I have is that the formatting from the Excel file (bold, underline, and italics) is removed when I read the cells of the Excel file into a String. Is there any way to keep that formatting? Thank you in advance. Angelo PS - Below is the code from TestComplete help that mine is based on. var RecNo; // Posts data to the log (helper routine) function ProcessData() { var Fldr, i; Fldr = Log.CreateFolder("Record: " + aqConvert.VarToStr(RecNo)); Log.PushLogFolder(Fldr); for(i = 0; i < DDT.CurrentDriver.ColumnCount; i++) Log.Message(DDT.CurrentDriver.ColumnName(i) + ": " + aqConvert.VarToStr(DDT.CurrentDriver.Value(i))); Log.PopLogFolder(); RecNo = RecNo + 1; } // Creates the driver (main routine) function TestDriver() { var Driver; // Creates the driver // If you connect to an Excel 2007 sheet, use the following method call: // Driver = DDT.ExcelDriver("C:\\MyFile.xls", "Sheet1", true); Driver = DDT.ExcelDriver("C:\\MyFile.xls", "Sheet1"); // Iterates through records RecNo = 0; while (! Driver.EOF() ) { ProcessData(); // Processes data Driver.Next(); // Goes to the next record } // Closing the driver DDT.CloseDriver(Driver.Name); }