We have a program made in Borland Delphi that uses Word automation to create documents. On an installation (terminal server) we are only able to get the Word automation to work when running as local administrator.
When runnnig as anoter user we get an error message "Opdracht mislukt -2146824090" (its dutch version of Office), wich I guess is translated to "Operation failed" or "Command failed".

The user has read/write access to the folder where the program try to put the new document.

Office 2010
64bits Windows server 2008 R2 standard

The applicaion is 32bit windows application.

If I add a delay (500ms) after the word.application is created, everything works as normall.

WordApp   := CreateOleObject('Word.Application');
sleep(500);
Doc := WordApp.documents.Open(sFile,EmptyParam,true);

Anybody knows why the CreateOleObject command now returns before the Word application can be used?

link|improve this question
I don't find a question mark. What is the question? – Vantomex Oct 26 '10 at 15:08
You ask what could be the cause for that delay for normal users? – Fabricio Araujo Oct 26 '10 at 16:13
Are there any third-party add-ins installed? – 0xA3 Oct 26 '10 at 19:26
1  
I can confirm this problem using Delphi 2010 and Office 2010 on Vista 32-Bit – Joe Meyer Oct 27 '10 at 3:45
1  
Interesting, I'm also getting reports of this error (0x800A1066) from our customers. It's always Word 2010 and always Documents.Open call that fails. – The_Fox Jan 4 '11 at 10:21
feedback

3 Answers

If you want to track out that, you could use a tool like ProcessMonitor to trace the Word automation executions till the point which you can use the app.

Seems some kind of rights check is taking place - but half a second seems too much time just for this.

link|improve this answer
The rason it works with the local administrator account, seems to be that Word starts twice as fast with this account. Not sure why dough – Mike Oct 28 '10 at 7:42
feedback

You could try to open the Document a few times, or is Word totally borked after it gave the error?

WordApp := CreateOleObject('Word.Application');

while True do
begin
  try
    Doc := WordApp.documents.Open(sFile,EmptyParam,true);
    Break;
  except
    on E: EOleSysError do
    begin
      // raise error if it's not the expected "Command failed" error
      if E.ErrorCode <> -2146824090 then
        raise;
    end;
  end;
end;

Edit:

Please see my answer here which provides a better solution and an explanation why this happens.

link|improve this answer
This worked perfectly for me, in a tool that worked fine against 2007, but not against 2010. Well, expect for the user who's accessing template files, on start, that exist on a network share (out of the office, so connection is extremely slow). +1 – James Skemp May 17 '11 at 20:30
1  
@James Skemp: you might want to check out my stackoverflow answer here: stackoverflow.com/questions/5913665/… – The_Fox May 18 '11 at 6:43
Excellent idea, so +1 (for comment and your other answer). – James Skemp May 18 '11 at 18:01
feedback
up vote 0 down vote accepted

The administrator account working wihtout delay, seems not to have anything with rights to do, but that Word happens to start much faster with this account than the normal domain user accounts.

I can live with the delay workaround, but if anyone knows a better way please let me know.

link|improve this answer
1  
For a better workaround: stackoverflow.com/questions/5913665/… – The_Fox May 18 '11 at 6:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.