Hi everyone, I succeded in creating java-wrapper for Excel, and in excuting TextEcel sample. It was very useful, though my need is to invoke a vba excel macro...
Hi, did you already try out the run-method of the _Application interface? You can all it on the Application-object (as Application implements _Application) ...
Hi Stefan, I used this code: JOLEDocument m_srv = new JOLEDocument(); jcw.ms.Excel.Application excel = new jcw.ms.Excel.Application(); // Distance.xls is my...
Hello ... I think your JCW are generated with LCID different from US-EN. Macro calling does need correct LCID passed to. May be [1] will be helpfull. Regards, ...
Hi! Is there a way to prevent the Active X component to steal mouse events? The ideal situation would be that the method addMouse*Listener stuff of JActiveX or...
Hi All, I am using Jadozoom's IzmJniAdo.dll to connect to a access database. After my program runs for a while, I get the error shown below. It would be really...
Hi, could it be a problem with your query? Try not quoting the table name together with the column name: For example use T5.[FNDTIME] instead of [T5.FNDTIME]. ...
Stefan, Thanks for responding so quickly. I will make the changes as suggested by you. But do you know why it would work some times and not at other times. Do...
Hi, I checked the JET/MDAC engine and it seems to be current. The problem seems to reoccur even after changing the query. Any help will be greatly appreciated....
Hello, when i create an JActiveX() instance i get an UnsatisfiedLinkException. All attempts were to no avail (like message no. 2577). I think that the problem...
Did you try to run this query in a simple test application. Where you just open the connection using your jdbc-url then run the query. Does it work then? ...
Hi, then some part of that existing application is the cause for this problem. Don't you have access to the code of the whole application, especially the start...
yes, i have access to the source code. when i start the project under eclipse it runs well, but if i use an applicationstarter not. So it means that there are...
Hi, what kind of applicationstarter is this? It is not just a java.exe or javaw.exe call? If the Applicationstarter has already loaded the jawt.dll with ...
Stefan, The set up we have is that DBF files are linked in a access database. The error seems to be happening when another program is trying to access the same...
Hi, I'm using jacoZoom to call one of our internal COM APIs. Some basic functions work ok, but when I try to call methods with Variant types, I get a JVM...
Hi, firstly you can just call com.inzoom.comjni.Variant index = new com.inzoom.comjni.Variant(1); No need to make it 2 calls. But what fails is the following: ...
I saw a previous mention of this file but I have a different problem. Out of the 600-odd files that are in the set only this one won't compile. This shows one...
Hi, this is due to the case that the interface _HiddenInterface violates the fundamental COM rule, that every interface must extend IUnknown. jacoZoom...
An example provided by the ActiveX manufacturer and a 'browser' show a parameter as a boolean scalar ( actually ByRef VT_BOOL ) but the prototype in the...
Hi, if a parameter is declared as byref it is passed by reference which means that it may change in the call. In java if you have void foo(boolean value); no...
Hi Stefan, Thanks for your reply. It's taken me a little while to work out _why_ the wrapper does that but now I understand. As you mentioned, Java doesn't...