Windows with Delphi Windows API (94) Windows Filesystem (41) Windows Forms (69) Windows Graphics (38)
Exchange Links About this site Links to us 
|
WordBasic via OLE
This article has not been rated yet. After reading, feel free to leave comments and rate it.
Try the following:
 | |  | | // From: CEHJohnson
uses
OleAuto;
var
MSWord : Variant;
begin
MsWord := CreateOleObject('Word.Basic');
MsWord.FileNewDefault;
MsWord.TogglePortrait;
end;
| |  | |  | You don't like the formatting? Check out SourceCoder then!
Comments:
|