views:

28

answers:

1

I create win application by vs2008 and use dsoframer.ocx to view word document. this application work ok in my machine,but when i created setup file and installed it in another pc windows xp sp3 i recieved error:HRESULT: 0x80040154

+3  A: 

0x80040154 is the Class not Registered error.

You need to register the ocx control on other machine where you are getting this error. How did you created the setup? The setup module created by Visual Studio has dependency installation module, where you need to specify which ActiveX controls/Dlls you are using and that need to be registered.

Faisal Feroz
"dsoframer.ocx" already installed with setup. i created setup by vs.net
ayman
can you try manually registering the file with regsvr32.
Faisal Feroz
Could be others. Is Office installed on that machine?
Hans Passant