Uwe
Guest
|
Hi, with MS Office XP the funtion below worked fine. Now I tried it with MS Word 2003 and get confusing messages from MS Word.
Is there some change I have to be aware of?
What's the easiest and best way to save the current document?
Thanks,
Uwe
var
sPath, format: OleVariant;
begin
sPath := 'c:\uwedoc.doc';
format := 102;
WordApp.ActiveDocument.SaveAs(sPath,format,EmptyParam,EmptyParam
,EmptyParam,EmptyParam,EmptyParam,EmptyParam
,EmptyParam,EmptyParam,EmptyParam);
end;
|
|
Dmitry Kostochko
Add-in Express team
Posts: 2887
Joined: 2004-04-05
|
Hi Uwe,
1. Quit Microsoft Word.
2. Click Start, click Run, type regedit, and then click OK.
3. Locate and then click to select the following registry key:
HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Word\Options
4. After you select the key that is specified in step 3, point to New on the Edit menu, and then click DWORD Value.
5. Type DoNotConfirmConverterSecurity, and then press ENTER.
6. Right-click DoNotConfirmConverterSecurity, and then click Modify.
7. In the Value data box, type 1, and then click OK.
8. On the File menu, click Exit to quit Registry Editor.
http://support.microsoft.com/default.aspx?kbid=837011
|
|
Kris
Guest
|
Sorry but still i see converter messages. What to do? I have pocet pc installed and what i got is pocet pc converter message during this. |
|
Guest
Guest
|
Found solution, right code is 0 |
|