simple addin dont work in 2013 64bit

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

simple addin dont work in 2013 64bit
same 
Yossi Mazal Tov


Guest


i just install brand delphi XE2 in brand Windows 7 pro 64 bit.
also install office 2013 plus.
when i just create simple Addin with nothing but showmessage('kuku') on AddInFinalize the
office excel, word crash.
the target platform is 64 bit and there is nothing except add-in-express instaled.

what am i doing wrong?

Yossi


this is all the source.

unit test1_IMPL;

interface

uses
SysUtils, ComObj, ComServ, ActiveX, Variants, Office2000, adxAddIn,
dialogs, test1_TLB;

type
TcoTest1 = class(TadxAddin, IcoTest1)
end;

TAddInModule = class(TadxCOMAddInModule)
procedure adxCOMAddInModuleAddInFinalize(Sender: TObject);
private
protected
public
end;

implementation

{$R *.dfm}

procedure TAddInModule.adxCOMAddInModuleAddInFinalize(Sender: TObject);
begin
showmessage('kuku');
end;

initialization
TadxFactory.Create(ComServer, TcoTest1, CLASS_coTest1, TAddInModule);

end.
Posted 24 Apr, 2013 03:16:38 Top
Andrei Smolin


Add-in Express team


Posts: 18793
Joined: 2006-05-11
Hello Yossi,

Please install XE2 Update Pack 4 Hotfix 1!


Andrei Smolin
Add-in Express Team Leader
Posted 24 Apr, 2013 03:24:20 Top
Yossi Mazal Tov


Guest


Hi Andrei.

i update the Delphi XE2 To update 4 hot fix 1.
now the basic COM-ADDIN work.
also the Addin i have for Word,Excel,PowerPoint (on office 2013 64bit) work too.

the add in for outlook don't work, even that in the RegSvr32 seem to be installed (very quick).
in outlook-file-options-addin the com dose not present at all.

i put
MeExplBar: TadxOlExplorerCommandBar;
MyInspBar: TadxOlInspectorCommandBar;
on the form

the same AddIn Work fine in 32bit.
(i just delete all the dcu... + target platform to 64 bit)

yossi
Posted 25 Apr, 2013 10:31:44 Top
Andrei Smolin


Add-in Express team


Posts: 18793
Joined: 2006-05-11
Hello Yossi,

Can you send us your project? Please find the support email address in {Add-in Express installation folder}\readme.txt. Please make sure your email contains a link to this topic.


Andrei Smolin
Add-in Express Team Leader
Posted 25 Apr, 2013 11:28:47 Top
Andrei Smolin


Add-in Express team


Posts: 18793
Joined: 2006-05-11
Hello Yossi,

We've just tested your add-in on Win 7 + Outlook 2010 64bit - it works for us. I suggest that you make sure that you get the DLL to register from {your add-in folder}\Win64.

Also, I would suggest that you use Ribbon components, not commandbar components.


Andrei Smolin
Add-in Express Team Leader
Posted 26 Apr, 2013 03:51:54 Top
Yossi Mazal Tov


Guest


Hi Andrei

i didn't test it in outlook 2010 64 bit.
i did not work in outlook 2013 64 bit.

Yossi
Posted 26 Apr, 2013 04:02:32 Top
Andrei Smolin


Add-in Express team


Posts: 18793
Joined: 2006-05-11
It works on Outlook 2013 64bit, too. I'll send you the DLL in a couple of minutes.


Andrei Smolin
Add-in Express Team Leader
Posted 26 Apr, 2013 05:36:39 Top