Registriert seit: 27. Nov 2017
2.490 Beiträge
Delphi 7 Professional
|
AW: CreateOleObject('Word.Application') - Dotx öffnen aber docx bekommen, wie?
27. Nov 2018, 17:22
Delphi-Quellcode:
var
doc : String;
begin
doc := frm_main.AppPath + 'data\formulare\dokumentenname.docx';
if FileExists(doc) then
begin
ShellExecute(0, 'open', PChar(doc), nil, nil, SW_NORMAL );
end;
|
|
Zitat
|