Acer Cloud addin shows saveas dialog in MS word 2010

saurabhsingh
saurabhsingh Member Posts: 2 New User

In my word vsto application, I'm creating new word document and saving it by saveas method, it works fine, but it shows saveas dialog box during saveas method on acer M5-581T-6405 machine. On this machine another Acer Cloud addin is install except my addin, when I checked this addin in COM addin list, then it shows saveas dialog, otherwise it does not show the dialog.

I have set following conditions for word.application object:

 wordapp.Visible = false;  // creating in background
 wordapp.Options.SavePropertiesPrompt = false;
 wordapp.Options.SaveNormalPrompt = false;

 wordapp.DisplayAlerts = Microsoft.Office.Interop.Word.WdAlertLevel.wdAlertsNone;            

 doc = (Document)wordapp.Documents.Add(ref missing, ref missing, ref missing, ref visible);    //visible=true

doc.SaveAs(ref file, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing, ref missing);        

              

but it's not working for that machine(show saveas dialog, when "Acer Cloud" addin is enabled). I am using word 2007/2010.

Do your acer cloud enable all display alerts for ms word?

Please suggest me how can I solve this issue?

 

Thanks,

Saurabh 

Answers

  • Grubby
    Grubby Member Posts: 11 New User

    Hi Saurabh,

    It looks like a very complicated problem, it is advisable that you send a feedback to AcerCloud support, alternatively, you can send an email to "acercloud_support@cloud.acer.com" with adding the attachment of the issue's screenshot. By the way, whether the problems occurred only in MS word, or all including MS PPT and MS Excel?

  • saurabhsingh
    saurabhsingh Member Posts: 2 New User

    Hello Grubby,

    thanks your reply.

    I have sent this issue to acercloud_support@cloud.acer.com.

    Currently my addin is made only for MS Word, but in future same addin will be build for MS Excel.

     

    Saurabh

This discussion has been closed.