-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUExcel.pas
106 lines (89 loc) · 2.64 KB
/
UExcel.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
unit UExcel;
{$MODE objfpc}{$H+}
// Native methods for writing a simple Excel file
// Based on source by Fatih Olcer published in this article:
// http://www.swissdelphicenter.ch/en/showcode.php?id=725
interface
uses
Classes, SysUtils;
type
WriteXLS = class
private
XLSStream: TFileStream;
procedure XlsBeginStream(_XlsStream: TStream; const BuildNumber: word);
procedure XlsEndStream(_XlsStream: TStream);
public
function xlsopen(filename: string): boolean;
procedure xlsclose;
// Integer
procedure XlsWriteCellRk(const ACol, ARow: word;
const AValue: integer);
// Floating point number
procedure XlsWriteCellNumber(const ACol, ARow: word;
const AValue: double);
// String
procedure XlsWriteCellLabel(const ACol, ARow: word;
const AValue: ansistring);
end;
implementation
var
CXlsBof: array[0..5] of word = ($809, 8, 00, $10, 0, 0);
CXlsEof: array[0..1] of word = ($0A, 00);
CXlsLabel: array[0..5] of word = ($204, 0, 0, 0, 0, 0);
CXlsNumber: array[0..4] of word = ($203, 14, 0, 0, 0);
CXlsRk: array[0..4] of word = ($27E, 10, 0, 0, 0);
procedure WriteXLS.XlsBeginStream(_XlsStream: TStream; const BuildNumber: word);
begin
CXlsBof[4] := BuildNumber;
_XlsStream.WriteBuffer(CXlsBof, SizeOf(CXlsBof));
end;
procedure WriteXLS.XlsEndStream(_XlsStream: TStream);
begin
_XlsStream.WriteBuffer(CXlsEof, SizeOf(CXlsEof));
end;
procedure WriteXLS.XlsWriteCellRk(const ACol, ARow: word; const AValue: integer);
var
V: integer;
begin
CXlsRk[2] := ARow;
CXlsRk[3] := ACol;
XlsStream.WriteBuffer(CXlsRk, SizeOf(CXlsRk));
V := (AValue shl 2) or 2;
XlsStream.WriteBuffer(V, 4);
end;
procedure WriteXLS.XlsWriteCellNumber(const ACol, ARow: word; const AValue: double);
begin
CXlsNumber[2] := ARow;
CXlsNumber[3] := ACol;
XlsStream.WriteBuffer(CXlsNumber, SizeOf(CXlsNumber));
XlsStream.WriteBuffer(AValue, 8);
end;
procedure WriteXLS.XlsWriteCellLabel(const ACol, ARow: word; const AValue: ansistring);
var
L: word;
begin
L := Length(AValue);
CXlsLabel[1] := 8 + L;
CXlsLabel[2] := ARow;
CXlsLabel[3] := ACol;
CXlsLabel[5] := L;
XlsStream.WriteBuffer(CXlsLabel, SizeOf(CXlsLabel));
XlsStream.WriteBuffer(Pointer(AValue)^, L);
end;
function WriteXLS.xlsopen(filename: string): boolean;
begin
XlsStream := TFileStream.Create(filename, fmCreate);
try
XlsBeginStream(XlsStream, 0);
Result := True;
except
FreeAndNil(XlsStream);
Result := False;
end;
end;
procedure WriteXLS.xlsclose;
begin
XlsEndStream(XlsStream);
FreeAndNil(XlsStream);
end;
end.