250 lines
7.2 KiB
ObjectPascal
250 lines
7.2 KiB
ObjectPascal
|
|
{-----------------------------------------------------------------------------
|
|||
|
|
The contents of this file are subject to the Mozilla Public License
|
|||
|
|
Version 1.1 (the "License"); you may not use this file except in compliance
|
|||
|
|
with the License. You may obtain a copy of the License at
|
|||
|
|
http://www.mozilla.org/MPL/MPL-1.1.html
|
|||
|
|
|
|||
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|||
|
|
WITHOUT WARRANTY OF ANY KIND, either expressed or implied. See the License for
|
|||
|
|
the specific language governing rights and limitations under the License.
|
|||
|
|
|
|||
|
|
The Original Code is: JvgExport.PAS, released on 2003-01-15.
|
|||
|
|
|
|||
|
|
The Initial Developer of the Original Code is Andrey V. Chudin, [chudin att yandex dott ru]
|
|||
|
|
Portions created by Andrey V. Chudin are Copyright (C) 2003 Andrey V. Chudin.
|
|||
|
|
All Rights Reserved.
|
|||
|
|
|
|||
|
|
Contributor(s):
|
|||
|
|
Michael Beck [mbeck att bigfoot dott com].
|
|||
|
|
Burov Dmitry, translation of russian text.
|
|||
|
|
|
|||
|
|
You may retrieve the latest version of this file at the Project JEDI's JVCL home page,
|
|||
|
|
located at http://jvcl.sourceforge.net
|
|||
|
|
|
|||
|
|
Known Issues:
|
|||
|
|
-----------------------------------------------------------------------------}
|
|||
|
|
// $Id: JvgExport.pas 10612 2006-05-19 19:04:09Z jfudickar $
|
|||
|
|
|
|||
|
|
unit JvgExport;
|
|||
|
|
|
|||
|
|
{$I jvcl.inc}
|
|||
|
|
{$I windowsonly.inc}
|
|||
|
|
|
|||
|
|
interface
|
|||
|
|
|
|||
|
|
uses
|
|||
|
|
{$IFDEF USEJVCL}
|
|||
|
|
{$IFDEF UNITVERSIONING}
|
|||
|
|
JclUnitVersioning,
|
|||
|
|
{$ENDIF UNITVERSIONING}
|
|||
|
|
{$ENDIF USEJVCL}
|
|||
|
|
Windows, Messages, Graphics, ExtCtrls, SysUtils, Classes, Controls, Forms,
|
|||
|
|
DB,
|
|||
|
|
{$IFDEF JVCL_USEQuickReport}
|
|||
|
|
QuickRpt, QRExport,
|
|||
|
|
{$ENDIF JVCL_USEQuickReport}
|
|||
|
|
JvgTypes;
|
|||
|
|
|
|||
|
|
type
|
|||
|
|
TOnExportProgress = procedure(Progress: Integer) of object;
|
|||
|
|
|
|||
|
|
{$IFDEF JVCL_UseQuickReport}
|
|||
|
|
procedure ExportToExcel(QuickRep: TCustomQuickRep);
|
|||
|
|
{$ENDIF JVCL_UseQuickReport}
|
|||
|
|
procedure ExportDataSetToExcel(DataSet: TDataSet; OnExportProgress: TOnExportProgress);
|
|||
|
|
|
|||
|
|
{$IFDEF USEJVCL}
|
|||
|
|
{$IFDEF UNITVERSIONING}
|
|||
|
|
const
|
|||
|
|
UnitVersioning: TUnitVersionInfo = (
|
|||
|
|
RCSfile: '$URL: https://jvcl.svn.sourceforge.net/svnroot/jvcl/tags/JVCL3_32/run/JvgExport.pas $';
|
|||
|
|
Revision: '$Revision: 10612 $';
|
|||
|
|
Date: '$Date: 2006-05-19 21:04:09 +0200 (ven., 19 mai 2006) $';
|
|||
|
|
LogPath: 'JVCL\run'
|
|||
|
|
);
|
|||
|
|
{$ENDIF UNITVERSIONING}
|
|||
|
|
{$ENDIF USEJVCL}
|
|||
|
|
|
|||
|
|
implementation
|
|||
|
|
|
|||
|
|
uses
|
|||
|
|
{$IFDEF USEJVCL}
|
|||
|
|
{$ENDIF USEJVCL}
|
|||
|
|
ComObj,
|
|||
|
|
JvgUtils;
|
|||
|
|
|
|||
|
|
const
|
|||
|
|
cExcelApplication = 'Excel.Application';
|
|||
|
|
cReport = 'Report';
|
|||
|
|
|
|||
|
|
{$IFDEF JVCL_UseQuickReport}
|
|||
|
|
procedure ExportToExcel(QuickRep: TCustomQuickRep);
|
|||
|
|
var
|
|||
|
|
P: PChar;
|
|||
|
|
XL: Variant;
|
|||
|
|
Sheet: Variant;
|
|||
|
|
I, J, RecNo: Integer;
|
|||
|
|
SL1, SL2: TStringList;
|
|||
|
|
AExportFilter: TQRCommaSeparatedFilter;
|
|||
|
|
MemStream: TMemoryStream;
|
|||
|
|
TempFileName: string;
|
|||
|
|
Buffer: array [0..MAX_PATH] of Char;
|
|||
|
|
|
|||
|
|
function DeleteEOLs(const Str: string): string;
|
|||
|
|
var
|
|||
|
|
I: Integer;
|
|||
|
|
begin
|
|||
|
|
Result := Str;
|
|||
|
|
for I := 1 to Length(Result) do
|
|||
|
|
if Result[I] = #13 then
|
|||
|
|
Result[I] := ' ';
|
|||
|
|
end;
|
|||
|
|
|
|||
|
|
begin
|
|||
|
|
try
|
|||
|
|
XL := GetActiveOleObject(cExcelApplication);
|
|||
|
|
except
|
|||
|
|
XL := CreateOleObject(cExcelApplication);
|
|||
|
|
end;
|
|||
|
|
|
|||
|
|
GetTempPath(SizeOf(Buffer), Buffer);
|
|||
|
|
TempFileName := Buffer + 'JvgExportToExcelTemp.txt';
|
|||
|
|
AExportFilter := TQRCommaSeparatedFilter.Create(TempFileName);
|
|||
|
|
try
|
|||
|
|
QuickRep.ExportToFilter(AExportFilter);
|
|||
|
|
finally
|
|||
|
|
AExportFilter.Free;
|
|||
|
|
end;
|
|||
|
|
|
|||
|
|
XL.Visible := True;
|
|||
|
|
XL.WorkBooks.Add;
|
|||
|
|
XL.WorkBooks[XL.WorkBooks.Count].WorkSheets[1].Name := cReport;
|
|||
|
|
Sheet := XL.WorkBooks[XL.WorkBooks.Count].WorkSheets[cReport];
|
|||
|
|
|
|||
|
|
SL1 := TStringList.Create;
|
|||
|
|
SL2 := TStringList.Create;
|
|||
|
|
try
|
|||
|
|
// Sheet.SetBackgroundPicture(FileName:=ExtractFilePath(ParamStr(0))+'data\bg.JPG');
|
|||
|
|
// Sheet.Cells[1, 1] := 'Biblio'; Sheet.Cells[1, 1].Font.Color := $FFFFFF;
|
|||
|
|
// Sheet.Cells[2, 1] := 'Globus'; Sheet.Cells[2, 1].Font.Color := $FFFFFF;
|
|||
|
|
// Sheet.Columns[1].ColumnWidth := 11;
|
|||
|
|
|
|||
|
|
RecNo := 1;
|
|||
|
|
Sheet.Cells[RecNo, 1] := 'Report created on ' + DateToStr(Date);
|
|||
|
|
Sheet.Cells[RecNo, 1].Font.Italic := True;
|
|||
|
|
Inc(RecNo);
|
|||
|
|
Sheet.Cells[RecNo, 1] := 'User ' + UserName;
|
|||
|
|
Sheet.Cells[RecNo, 1].Font.Italic := True;
|
|||
|
|
|
|||
|
|
Inc(RecNo, 2);
|
|||
|
|
Sheet.Cells[RecNo, 1] := '';
|
|||
|
|
Sheet.Cells[RecNo, 1].Font.Bold := True;
|
|||
|
|
Sheet.Cells[RecNo, 1].Font.Size := 14;
|
|||
|
|
|
|||
|
|
Inc(RecNo, 2);
|
|||
|
|
|
|||
|
|
MemStream := TMemoryStream.Create;
|
|||
|
|
MemStream.LoadFromFile(TempFileName);
|
|||
|
|
P := MemStream.Memory;
|
|||
|
|
for I := 0 to MemStream.Size - 1 do
|
|||
|
|
if P[I] = Chr(0) then
|
|||
|
|
P[I] := ',';
|
|||
|
|
|
|||
|
|
SL1.LoadFromStream(MemStream);
|
|||
|
|
MemStream.Free;
|
|||
|
|
for I := 0 to SL1.Count - 1 do
|
|||
|
|
begin
|
|||
|
|
SL2.CommaText := SL1[I];
|
|||
|
|
for J := 0 to SL2.Count - 1 do
|
|||
|
|
Sheet.Cells[RecNo, 1 + J] := SL2[J];
|
|||
|
|
Inc(RecNo);
|
|||
|
|
end;
|
|||
|
|
finally
|
|||
|
|
SL1.Free;
|
|||
|
|
SL2.Free;
|
|||
|
|
if FileExists(TempFileName) then
|
|||
|
|
DeleteFile(TempFileName);
|
|||
|
|
end;
|
|||
|
|
end;
|
|||
|
|
{$ENDIF JVCL_UseQuickReport}
|
|||
|
|
|
|||
|
|
procedure ExportDataSetToExcel(DataSet: TDataSet; OnExportProgress: TOnExportProgress);
|
|||
|
|
var
|
|||
|
|
XL: Variant;
|
|||
|
|
Sheet: Variant;
|
|||
|
|
I, RecNo, ColIndex: Integer;
|
|||
|
|
begin
|
|||
|
|
try
|
|||
|
|
XL := GetActiveOleObject(cExcelApplication);
|
|||
|
|
except
|
|||
|
|
XL := CreateOleObject(cExcelApplication);
|
|||
|
|
end;
|
|||
|
|
|
|||
|
|
XL.Visible := True;
|
|||
|
|
XL.WorkBooks.Add;
|
|||
|
|
XL.WorkBooks[XL.WorkBooks.Count].WorkSheets[1].Name := cReport;
|
|||
|
|
Sheet := XL.WorkBooks[XL.WorkBooks.Count].WorkSheets[cReport];
|
|||
|
|
// Sheet.SetBackgroundPicture(FileName:=ExtractFilePath(ParamStr(0))+'bg.JPG');
|
|||
|
|
|
|||
|
|
// Sheet.Cells[1, 1] := 'Biblio'; Sheet.Cells[1, 1].Font.Bold := True; Sheet.Cells[1, 1].Font.Color := clWhite;
|
|||
|
|
// Sheet.Cells[2, 1] := 'Globus'; Sheet.Cells[2, 1].Font.Bold := True; Sheet.Cells[2, 1].Font.Color := clWhite;
|
|||
|
|
|
|||
|
|
RecNo := 1;
|
|||
|
|
Sheet.Cells[RecNo, 2] := 'Document created on ' + DateToStr(Date) + ' ' + TimeToStr(Time);
|
|||
|
|
Sheet.Cells[RecNo, 2].Font.Italic := True;
|
|||
|
|
Inc(RecNo);
|
|||
|
|
Sheet.Cells[RecNo, 2] := 'User: ' + ComputerName + ' / ' + UserName;
|
|||
|
|
Sheet.Cells[RecNo, 2].Font.Italic := True;
|
|||
|
|
Inc(RecNo);
|
|||
|
|
Sheet.Cells[RecNo, 2] := 'Program: ' + ExtractFileName(ParamStr(0));
|
|||
|
|
Sheet.Cells[RecNo, 2].Font.Italic := True;
|
|||
|
|
|
|||
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
{ Header [translated] }
|
|||
|
|
Inc(RecNo, 3);
|
|||
|
|
ColIndex := 0;
|
|||
|
|
for I := 0 to DataSet.FieldCount - 1 do
|
|||
|
|
if DataSet.Fields[I].Visible then
|
|||
|
|
begin
|
|||
|
|
if DataSet.Fields[I].DisplayLabel <> '' then
|
|||
|
|
Sheet.Cells[RecNo, 2 + ColIndex] := DataSet.Fields[I].DisplayLabel
|
|||
|
|
else
|
|||
|
|
Sheet.Cells[RecNo, 2 + ColIndex] := DataSet.Fields[I].FieldName;
|
|||
|
|
Sheet.Cells[RecNo, 2 + ColIndex].Font.Bold := True;
|
|||
|
|
Sheet.Cells[RecNo, 2 + ColIndex].Font.Size := 10;
|
|||
|
|
Inc(ColIndex);
|
|||
|
|
end;
|
|||
|
|
|
|||
|
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
|
{ Data has begun to pass in [translated] }
|
|||
|
|
DataSet.First;
|
|||
|
|
Inc(RecNo, 3);
|
|||
|
|
while not DataSet.Eof do
|
|||
|
|
begin
|
|||
|
|
ColIndex := 0;
|
|||
|
|
for I := 0 to DataSet.FieldCount - 1 do
|
|||
|
|
if DataSet.Fields[I].Visible then
|
|||
|
|
begin
|
|||
|
|
Sheet.Cells[RecNo, 2 + ColIndex] := DataSet.Fields[I].AsString;
|
|||
|
|
Inc(ColIndex);
|
|||
|
|
end;
|
|||
|
|
DataSet.Next;
|
|||
|
|
if Assigned(OnExportProgress) then
|
|||
|
|
OnExportProgress(Round((DataSet.RecNo * 100.0) / DataSet.RecordCount));
|
|||
|
|
Inc(RecNo);
|
|||
|
|
end;
|
|||
|
|
end;
|
|||
|
|
|
|||
|
|
{$IFDEF USEJVCL}
|
|||
|
|
{$IFDEF UNITVERSIONING}
|
|||
|
|
initialization
|
|||
|
|
RegisterUnitVersion(HInstance, UnitVersioning);
|
|||
|
|
|
|||
|
|
finalization
|
|||
|
|
UnregisterUnitVersion(HInstance);
|
|||
|
|
{$ENDIF UNITVERSIONING}
|
|||
|
|
{$ENDIF USEJVCL}
|
|||
|
|
|
|||
|
|
end.
|
|||
|
|
|