I'm already a member but I have forgotten the yahoo ID I used to register with this group. Could you send me the ID (if you have it) otherwise I just created...
Hi, the problem is, that the jacoZoom runtime-package com.inzoom.comjni also contains enums, and these had to be renamed anyway for compatibility. And then the...
Hi, you can use the com.inzoom.comjni.Dll.RegisterActiveXDll method to register an ActiveX DLL on the client computer. If you this method without argument,...
Hi, That sounds great but I still get an exception. Here is how I do it know. What am I doing wrong? static { try { com.inzoom.comjni.Dll.RegisterActiveXDll();...
Sorry Stefan, My bad, it works perfectly know. I'm very impressed with this tool. We are definitly going to use this in our server-client application. Add us...
Hi, you jacozoom profis, tried to get a simple program working to embed Excel in a Swing application : ... ... com.inzoom.axjni.JOLEDocument ole_doc = new...
Hi, thank you, this error is gone, but now i'm always getting another error and i did'nt find any ... void openTest() { System.out.println("openTest()"); ...
Hi, Stefan ... <CODE snipped> <EXCEPTION snipped> ... 0x80049401(hex) is published in jnicomaxjni.dll on Custom_Errors_IOleDoc as E_INVALIDPROGID . The first...
I am trying to install JacoZoom in a directory other than the default c:\program files\infozoom. I am able to install the files and register successfully. I...
Oops! Sorry, I found the problem. I did not include the file name in the call to runRoyaltyFree(), just the path. Thanks, Tracy Brown ... default ... ...
We have a scenario where a Java application using jacoZoom communicates to an MFC application which acts as the server. When the user is finished with the MFC...
I've asked questions on another Java board about this and the thought is that it might be JNI related. They recomended using Xcheck:jni added to the command...
Well I think I found the solution. I simply set the reference to the MFC application from within side the Java application to null when I am done releasing the...
On occasion, we see a dialog box pop up saying: "Server Busy. The action cannot be completed because the other program is busy." Sometimes hitting the Retry...
... Yes. This message does appear as well without jacozoom using if a COM-Server client does't returns from event handle code. STA-Server instancies typically...
Hi all, We are using jacoZoom and JaxtiveX in a large Java Application based on the NetBeans Framework. When adding a JActiveX to the main application's window...
Hi, ... Right, but JPanel is't a native window, so resize or move for a paint() call may be eliminated by Swing double buffering. ... AFAIK No. ... A repaint...
Hi all, I have a question concerning calling the runRoyaltyFree method: Am I allowed to call this method more times? Can it happen I get this exception when I...
Hello, Does anybody of you know how can I monitor memory used by COM objects when using jacoZoom? I am using jacoZoom from a servlet. The servlet container...
Hi, in order to make sure that you call it only once, do it like that: if(!com.inzoom.comjni.Dll.isLoaded()) com.inzoom.comjni.Dll.runRoyaltyFree(..); Stefan...
Hello, My problem: I have a servlet using jacoZoom to access Primavera P3. The servlet is running in Tomcat as a Window service and the process is consuming...
Hi, as long as you don't explicitly release the COM objects you are using, you rely on the garbage collector to call the finalizer of the COM wrappers. Thus...
How would we save documents as filtered HTML, not straight HTML, using jacoZoom and Word 2003? We currently use WdSaveFormat.wsFormatHTML, but we run into...
How do I construct the JCW class- what is appropriate constructor and what are the input params? I have an in process Com dll. What is the value of the comPtr?...
Hello, Is it possible to access jacoZoom-generated wrappers from multiple Java threads? Let's say I have a thread which creates a session, another one using...
Hi, try the following: From Word, start recording a macro, then perform the operation manually, then stop the macro recorder and look at the generated VB-code....
Hi, pls have a look at the document Wrappers.html which is included with the jacoZoom-download. Only wrappers for coclass-types have a constructor. The...