|
ANN: FlexCel Reports 2.5
Hi,
Version 2.5 of FlexCel is available for download.
For new users, FlexCel is a group of components targeted at writing and reading Excel files. It works as a reporting tool, but the result is an Excel file, instead of a printer or a preview. So, your users can save it, mail it or modify it.
For old users, V2.5 adds:
* Db has been isolated in the code. Now you can make a report all from memory (using an included memory table) and not use the DB unit.
* FlexCelImport has been enhanced. FexCelImport has always been a little my neglected child... but it keeps growing anyway. Now it can read formula results, column widths, row heights, cell/column/row formats/fonts/borders, etc. You still can't write a new format for a cell, but you can copy the format from another.
* There is a Grid that uses the new features of FlexCelImport to display/edit an excel file.
* Many small improvements and bug fixes. Somehow, FlexCel is growing mature...
FlexCel is free under MPL, even when a U$S 30 donation/registration is greatly appreciated. You will be recognizing my work, and contributing to further development.
Hope you enjoy it. Have fun.
Adrian.
Related Discussions - HOW TO FREE UP A QUICKREPORT COMPONENT IN MEMORY...? (2001-01-09 08:05:01)Use :
Begin
if RepForm=Nil then
RepForm:=TRepForm.Create(Application);
End;
- I NEED A E-MAIL ADDRESS TO BORLAND/INPRISE (2001-01-11 02:12:35)Cut'nPaste from www.inprise.com
Borland is revamping its bug reporting process. As part of this effort we will be reviewing the best ways to...
- WRITING FROM A QUERY INTO A TABLE (2001-01-24 09:29:42)with TableX do
begin
Insert;
FieldByName('Field1').asString := QueryZ.FieldByName('FieldA').asString;
FieldByName('Field2').asString :=...
- PREVIEW REPORT IN MDI APPLICATION (2001-02-06 18:25:29)Although I'm using Delphi 5 with QuickReport3, I'd bet that QuickReports 2 (like QR3) has the AfterPreview event. Use this event to close the...
- HOW TO CATCH A MOUSE CLICK AND POSITION FROM ANY APPLICATION ? (2001-02-08 05:53:10)for this the most efficeint solution is using software hooks
to provide ready help on the subject i am posting an article below which is quite...
- "PRINTER SELECTED IS NOT VALID" (2001-02-09 05:45:47)the quick report has this bug that whenever it becomes active it checks for the status of default printer and if its path is not valid at that...
- DELETING A FILE (DIRECT DISK ACCESS) (2001-02-10 17:56:53)Hey... i'm not sure what you mean by this "direct disk access" but if you wanna delete a file (the code will show you how to do it without just...
- BROWSER PLUG-IN WITH DELPHI (2001-02-15 00:09:19)why dont you just export your dataset to html files and make them available to user, it is not only clean and simple but also removes the need of...
- IRC CLIENT (2001-02-23 17:08:01)Search for Active IRC component.Here is a few explanation about it.
ActiveIRC Documentation
Welcome to the documentation for the ActiveIRC...
- TOTALING VALUES FOR REPORT OR FORM DISPLAY (2001-02-28 00:53:26)In Your Reports:
You can use QuickReport's built in Expressions (TQRExpr) to SUM(Expense.ExpAmt) for you.
On your Forms:
If you use a TQuery,...
|