REmove addin after change in Delphi

Add-in Express™ Support Service
That's what is more important than anything else

REmove addin after change in Delphi
 
Uwe Thaden


Guest


I registered an add in for MS Word and forgot to un-register it (from Delphi IDE).

The I changed the source and installed my add in again.

Pfff -- when un-registering the latter the first one stays there.

I searched the registry but I cannot figure out how to delete the new item in the context menu of MS Word.

Any idea?

Thanks,
Uwe
Posted 11 Mar, 2005 12:41:36 Top
Dmitry Kostochko


Add-in Express team


Posts: 2875
Joined: 2004-04-05
Hi Uwe,

The general way: you can write a macro like this

Public Sub ResetCommandBar()
  Dim CmdBar As CommandBar

  Set CmdBar = Application.CommandBars.Item("Text")
  CmdBar.Reset
End Sub


The rough way: remove Normal.dot template


Posted 11 Mar, 2005 12:57:30 Top
Uwe Thaden




Posts: 13
Joined: 2005-03-08
I deleted the normal.dot but still it seems that some "things" are not deleted.

Is there some other "hard" way to really remove everything and get back a clean MS Word without re-installing?

Thanks,
Uwe
Posted 21 Mar, 2005 09:04:37 Top
Dmitry Kostochko


Add-in Express team


Posts: 2875
Joined: 2004-04-05
Hi Uwe,

I deleted the normal.dot but still it seems that some "things" are not deleted.

What things are left?


Posted 21 Mar, 2005 09:28:28 Top
Guest


Guest


Sometimes I get the error message that e. g. a TabSheet is already existing. Even after un-registering my AddIn and deleting the normal.dot.

I think it is also the problem with the TForm in my other post: Maybe there is something I do not freee correctly and thus get the exception.

I want to remove everything and start from scratch.

--Uwe
Posted 21 Mar, 2005 10:01:55 Top
Dmitry Kostochko


Add-in Express team


Posts: 2875
Joined: 2004-04-05
Hi Uwe,

Unregister your add-in. Make sure that no add-in is run (checked) via COM Add-ins dialog box. Remove Normal.dot template. That's all.



Posted 21 Mar, 2005 12:38:46 Top