mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-07 23:32:43 +02:00
8 lines
126 B
Plaintext
8 lines
126 B
Plaintext
Program test;
|
|
var
|
|
WordDoc: Variant;
|
|
begin
|
|
WordDoc := CreateOleObject('Word.Application');
|
|
WordDoc.Visible := True;
|
|
end.
|