8 lines
126 B
Plaintext
8 lines
126 B
Plaintext
|
Program test;
|
||
|
var
|
||
|
WordDoc: Variant;
|
||
|
begin
|
||
|
WordDoc := CreateOleObject('Word.Application');
|
||
|
WordDoc.Visible := True;
|
||
|
end.
|