ContributionsMost RecentMost LikesSolutionsRe: Read and write to excel fileThanks for the reply. I wrote a ReadExcel and a WriteExcel function and declared a counter. I read the excel to get the rowCount, and than used while to iterate through the rcords. Re: Read and write to excel fileThe problem with this is that i'm using while statement to read the whole excel, and after each iteration i want to write the result. So in this case i guess, i have to use a counter to iterate the excel records.Re: Read and write to excel fileI tried it, but i got the following error message: 'Book.xls' cannot be accessed. The file may be corrupted, located ona server that is not responding, or read-only.Read and write to excel fileHi All, My problem is to write to an excel file. I can read datas from it, but i want to write to the same file. I'm adding new attributes with my script, and the first cell contains the attribute nam, the second the value, and the third the msg, that the adding was successfull or not. I read the datas with this: var Driver = DDT.ExcelDriver("path\Book.xls", "Sheet1"); attributeName = DDT.CurrentDriver.Value("Attribute name"); attributeValue = DDT.CurrentDriver.Value("Attribute value"); But how can i write back tho the third cell? Thanks Finding swing objectsHi All, I have a problem with finding swing objects. There is a window, i want to find. But the problem is, each time i open it, it gets new id. So i can not refer to its name. How can i found it, if the only difference is this id? The objects name is like this: SwingObject("BOFrame", "Window for 32945 (User: test_user)", -1, 1)Re: Swing table accessI managed to solve the problem. In the project properties, i added from screen the table to the object mapping, and now i can use ClickCell method, and the table methods.Re: Swing table accessHi, I tried it, but no success. Unable to find the object Cell(0, "Product").Swing table accessHi All, I try to access swing table (SwingObject("JideTable", "", 0)) cells. I tried ClickCell method, but it says "Unable to find the object ClickCell("Product", 1). ..." What else ways are there to access the cells? Thanks.Re: Excel access problemThanks for the quick reply. And we can also use it for MS Access database access? I will try it.Excel access problemHi All, We want to access an excel file from script, and we get unspecified error message. MS Excel is not installed to the computer. Is the driver enough for accessing excel files or we have to install MS Office to access? Thanks