我目前的工作很老的項目,這是基於Delphi 5.如果我試圖x64系統上打開新的Word文檔,我recive這個錯誤:在Delphi
根據MSDN,問題的根源可能是我的Office(x64)的版本。在應用程序中,我們使用TWordApplication對象來管理Word調用。有沒有解決這個問題的方法?在Office x86上一切正常。
這是部分代碼:
Word := TWordApplication.Create(nil);
Word.ConnectKind := ckNewInstance;
Word.AutoQuit := True;
Word.Connect;
Word.Options.CheckSpellingAsYouType := False;
Word.Options.CheckGrammarAsYouType := False;
Word.Options.SuggestSpellingCorrections := False;
Word.Options.CheckGrammarWithSpelling := False;
Word.Options.ShowReadabilityStatistics := False;
Word.Options.IgnoreInternetAndFileAddresses := False;
Word.Options.IgnoreUppercase := True;
Word.Options.IgnoreMixedDigits := True;
Word.Options.ReplaceSelection := True;
Microsoft是否讓您安裝Office的x86和x64版本? – 2012-01-10 14:52:09
@marcus不可能這是不可能的 – 2012-01-10 14:53:48