How can i print a Word document on both sides using code in Delphi xe 3?
Below is how the word document is created:
try
{ Open the document}
WrdApp := CreateOLEObject('Word.Application');
wrdDoc := WrdApp.Documents.Open(document);
// Wrddoc.SaveAs(SaveToFile);
except
on E: Exception do
begin
E.Message := 'Could Not Execute MS WORD!';
raise;
end;
end;
Any help would be greatly appreciated thank you