I think the best way is to find out which error code is contained in ComJniException in the case where the export filter is not installed. Just uninstall the...
Hi. I've a DLL (GUI) and want to incorporate it in my java GUI. I've read the jacoZoom docs but I couldnt see how to achive what I'm looking for. Thanks. RGV...
I assume it is an ActiveX Control which you want to incorporate? You need to instantiate a com.inzoom.axjni.JActiveX and use the progId or CLSID of the...
Sorry for the inconvenience but I'm not a Windows guy (UNIXes) and this things're a little to much for me. How do I know the progId or CLSID of my ActiveX? In...
HI! No, we do not use events. In the meantime, we have written a JScript with each and every call to the COM server (so it does the same as our Java code) and...
Thomas Börkel
tbo@...
Apr 1, 2005 11:29 am
2341
Hi, thanks for this info. Must say this prb of yours had me pondering all the time.... Stefan ... call to the COM server (so it does the same as our Java code)...
Hi stefan and thanks for helping . Your solution is Great and i'll try it for sure. In case the graphic filter is not installed , the export() method won't...
Hello ... Check Dll vendor documentation if available. Very helpfull are vendor examples to dll usage. ... Yes , it is a ProgID. This may be found in the...
Hi, Just correct me if i'm wrong ! If i generate wrapper classes using mppt8 for powerpoint 97, then if office 97 is installed on user machine this will work...
Hi guys ; I wrote a java program to export ppt slides as gif images using powerpoint 97 standard edition. The exportation is working fine ; but when each slide...
Hi, I have released a jacoZoom update with a few minor changes in order to have working wrapper generation and compilation for mscorlib.tlb, the typelibrary of...
Hi! I test the JOLEDocument and the jcw-Wrapper-Classes to embed an MS-Excel-sheet in a Swing-Application. After releasing the JOLEDocument-reference (as...
Hi, Excel is very sensitive to unreleased references. Try the following code (assuming package imports): IUnknown unk = m_doc.getDocument(); Workbook wbk =...
Hello ... [snip] I'm not sure, but it should be possible to avoid release call on EVERY created wrapper by ensure a gc() call after finish using all the...
Hi, For my application I would need jacoZoom to only create the wrapper classes from my COM DLL, but not the interfaces. For example, my DLL has the interface...
Hi, I have a method getActiveProject() declared in the interface IMCDSystem in my DLL which returns a IMCDProject: dispinterface IMCDSystem { properties: ...
Hi, you can do the following: IMCDProject iProj = pMCDSystem.getActiveProject(); MCDProject proj = MCDProject.getMCDProjectFromUnknown(iProj); iProj.release();...
Hi, Thanks for the reply. Since the method getActiveProject() is declared in IMCDSystem, we tried to modify the generated wrapper classes. The generated code...
Hi, is the typelibrary from your company? In this case you can just change the IDL to return a coclass object instead of an interface. Yes, it would be...
Hi, Thanks again. No, the DLL is not from our company. Is it possible for you to enhance CreateJCW in order to replace interface return values with the...
Looking at the documentaion- are we required to copy the izmjnicom.dll into Windows/System32, or just install in the default location - for utomatic loading to...
An unexpected exception has been detected in native code outside the VM. Unexpected Signal : EXCEPTION_ACCESS_VIOLATION (0xc0000005) occurred at PC=0x7800270E ...
Hi, the best way to debug this problem: make a small main which directly calls the COM Server and thus demonstrates the problem. Show me this code. Then make a...