MichaelHooker
Programmer
Delphi 7 personal edition, Win XP SP2.
I have recently successfully installed "XLSReadWrite" into my Delphi system. This is a rather old but fast and functional widget for reading/writing Excel files, and it must be properly installed because all the demos work, even the new stand-alone test program I wrote to try it out works. This is not a query about XLSReadWrite. If you only want to read a file, you declare "XLSRead" in the uses section; and when you click the right icon, "XLSRead1: TXLSRead" is added to the Form Types section (in my case I then change the name of the component to XLSRead, to match the sample code). You then add various procedures to cope with the events you want to use.
I got my test program working just as I wanted, and then started transferring the code to my existing 1,000+ line program, hoping that I would no longer have to manually create the csv files from the Excel Workbook form in which the data reaches me. My new routine would (hopefully will) read two specific Worksheets and produce the csv files and we carry on from there combining the data in these files with the data in the text files which were subject of my previous query in this Forum.
But I can't run the result. Using a breakpoint and stepping through line by line I can see that the program runs happily past the line:
so it must recognise the XLSRead.FileName property, and indeed Watch tells me exactly what that is.
But when we get to:
which unsurprisingly is the method for reading the Excel file referenced by the filename , I get a message:
Clearly there's a lot I don't understand about how Delphi uses external packages, and the documentation I have isn't very helpful. Can some kind person please explain what sort of error I should be looking for? The new code was cut and pasted from the working test program so I'm fairly sure it's not the problem.
Many thanks in advance.
Michael Hooker
I have recently successfully installed "XLSReadWrite" into my Delphi system. This is a rather old but fast and functional widget for reading/writing Excel files, and it must be properly installed because all the demos work, even the new stand-alone test program I wrote to try it out works. This is not a query about XLSReadWrite. If you only want to read a file, you declare "XLSRead" in the uses section; and when you click the right icon, "XLSRead1: TXLSRead" is added to the Form Types section (in my case I then change the name of the component to XLSRead, to match the sample code). You then add various procedures to cope with the events you want to use.
I got my test program working just as I wanted, and then started transferring the code to my existing 1,000+ line program, hoping that I would no longer have to manually create the csv files from the Excel Workbook form in which the data reaches me. My new routine would (hopefully will) read two specific Worksheets and produce the csv files and we carry on from there combining the data in these files with the data in the text files which were subject of my previous query in this Forum.
But I can't run the result. Using a breakpoint and stepping through line by line I can see that the program runs happily past the line:
Code:
XLSRead.FileName := string + '.xls';
But when we get to:
Code:
XLSRead.Read;
and I'm offered the chance to browse for it. I browse but there's no such file in the package. There's an XLSRead.dcu, which is presumably what the XLSRead in the uses clause refers to, but that's not the same thing at all. And I don't have a clue what to do next... I didn't get this message with any of the XLSRead demos or my test program which uses the same code to the letter (and they only have the one main unit, Unit1) and I'm sure it's nothing to do with XLSRead itself, otherwise I'd be addressing this to the author."Source file not found: XLSRead.pas"
Clearly there's a lot I don't understand about how Delphi uses external packages, and the documentation I have isn't very helpful. Can some kind person please explain what sort of error I should be looking for? The new code was cut and pasted from the working test program so I'm fairly sure it's not the problem.
Many thanks in advance.
Michael Hooker