Disable updates in the edit window

Hi,

I have an add-in that changes the text in the file that is currently in the edit window of VWD.

How do I disable the updates to the window while I my add-in is ruinning then enable the window and refresh it when the add-in is finished

Thanks,
Nick



Answer this question

Disable updates in the edit window

  • Annand

    I am trying to automate adding references to a project. I get an error in a VS message box when the project loads saying I dont have the proper .net assemblies... How do I bypass this using macro automation, or any other type Does suppressUI work for this
  • Dmano

    Ole, Thanks for the asnwer.

    I tried DTE.SuppressUI=true (according to the documentation) and nothing changed on the target UI. I am still getting flashing updates to the editor screen. Is this a bug

    Nick


  • loumposa

    I am trying to automate adding references to a project. I get an error in a message box when the project loads saying I dont have the proper .net assemblies... How do I bypass this OK box, using macro automation, or any other type Does suppressUI work for this
  • Markus Zywitza

    You can diable UI by setting the following property

    DTE.SuppressUI = False

    /Ole


  • amol_16

    I am trying to automate adding references to a project. I get an error in a VS message box when the project loads saying I dont have the proper .net assemblies. How do I bypass this using macro automation, or any other type Does suppressUI work for this
  • Disable updates in the edit window