Search the web
Sign In
New User? Sign Up
jacoZoom
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 2568 - 2600 of 4588   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2568
Dear szschocke, i could call teh getFields() method but after when i try to convert it to SafeArray i received the following error: what can be the problem? ...
Ivan Horvath
pillesoft
Offline Send Email
Jul 1, 2005
7:58 am
2569
Hi, try determining the vartype of the variant after getFields: v[0].getVt(); What happens if you call getFields with (Java code): Variant[] v = new...
szschocke
Offline Send Email
Jul 1, 2005
8:23 am
2570
Dear szschocke, unfortunatelly i have a bad news: it's also not working in pure java: but it is working in vba, and in python therefore i assume that there is...
Ivan Horvath
pillesoft
Offline Send Email
Jul 1, 2005
11:25 am
2571
Hi, what I meant is: Variant[] v = new Variant[]{ new Variant(), new Variant(), new Variant(), new Variant(), }; oPMS.getFields(v); for(int i = 0; i <...
szschocke
Offline Send Email
Jul 1, 2005
2:11 pm
2572
Dear szschocke, here is the output of your code: D:\alco\java\APITest\class>java pmsapiTest 8 wg_code 0 0 0 and this is the vb code: Sub pmsapitest() Set sa =...
Ivan Horvath
pillesoft
Offline Send Email
Jul 4, 2005
7:18 am
2573
Hi, we will run a test with VFP and give you feed-back later. Stefan ... can ... it ... jyton ... com.inzoom.comjni.ComJniException.eVConvertError ... ...
szschocke
Offline Send Email
Jul 4, 2005
7:44 am
2574
Ciao szschocke, thank you very much! if you need my code i can send you ... Monday, July 4, 2005, 9:44:15 AM, you wrote: s> Hi, we will run a test with VFP and...
Ivan Horvath
pillesoft
Offline Send Email
Jul 4, 2005
8:06 am
2575
Hi, try: Variant[] v = new Variant[] { new Variant(new SafeArray (com.inzoom.comjni.enums.VarType.VARIANT,4),false) }; obj.getFields(v); SafeArray a =...
szschocke
Offline Send Email
Jul 4, 2005
11:23 am
2576
Ciao szschocke, thank you very much!! it works in Java as well as Jython!!! Monday, July 4, 2005, 1:22:29 PM, you wrote: s> Hi, s> try: s> Variant[] v = new...
Ivan Horvath
pillesoft
Offline Send Email
Jul 4, 2005
12:17 pm
2577
Stefan, Well, the "loading it early" workaround worked! (by calling in com.inzoom.win.Util.getFocusOwnerHWND() in the Frame constructor) On the other hand,...
lars_joreteg
Offline Send Email
Jul 5, 2005
10:39 pm
2578
Dear Expert, i'm new to use jacoZoom, therefore from the following was the question that need some advice or consilt from yours. Please kindly to take a look...
foongshen
Offline Send Email
Jul 6, 2005
3:24 am
2579
Hi, 1. + 2. Help and samples: Install jacoZoom.msi, then check the Help Index and Samples Index (Start->Programs->jacoZoom 1.5) 3. Yes 4. Note that JActiveX is...
szschocke
Offline Send Email
Jul 6, 2005
9:19 am
2580
Hello, I have a small problem by generating wrappers. For some tlbs, the generated package name will be uppercase, for some it will be lowercase. For some...
paul_10352000
Offline Send Email
Jul 6, 2005
11:34 am
2581
Hi, this is strange, the folders are supposed to have the same name as the packages, including upper/lower case. You can explicitly define the package names by...
szschocke
Offline Send Email
Jul 6, 2005
11:52 am
2583
JDialog contained JScrollPane, JScrollPane contained JPanel. JPanel contained JActivex, JActivex contained IE Activex. I have two problems, help me!! The...
mouzze00
Offline Send Email
Jul 15, 2005
9:44 am
2584
... IMHO IE ActiveX Control does manage scrollbar automaticaly. ... I will test this issue. I you have a small example or demo please upload to file section. ...
Hermann Scheibe
h_scheibe
Offline Send Email
Jul 15, 2005
12:51 pm
2586
Hi, Hermann. Thank you, your reply. ... JActivex have setAutoscrolls(false) method. but not work. In VC++, get HTMLDocumnet and set scroll=no. I can't get...
mouzze00
Offline Send Email
Jul 18, 2005
2:19 am
2587
... I will see IE Automation API and try to extend your sample with setAutoscrolls(false) call. ... I download your test code and got it running, so i can see...
Hermann Scheibe
h_scheibe
Offline Send Email
Jul 18, 2005
9:29 am
2588
Ciao jacoZoom, i've got again a problem ... now i would like to call a method in my COM object. this method receives an array as variant data type. the COM...
Ivan Horvath
pillesoft
Offline Send Email
Jul 18, 2005
10:51 am
2589
... setAutoscrolls(false)[ ? the default value is already 'false' ?] method is in the JComponent base class of JActiveX and does handle dragging operation. See...
Hermann Scheibe
h_scheibe
Offline Send Email
Jul 18, 2005
11:23 am
2590
Hi, first you need to create and fill a SafeArray, using one of the SafeArray ctors, then put it into a Variant,then call your method: SafeArray sa = new...
szschocke
Offline Send Email
Jul 18, 2005
11:42 am
2591
Ciao szschocke, thank you very much, your examples are working in Java. but unfortunatelly i'm using Jython, and in there i don't have success. here is the...
Ivan Horvath
pillesoft
Offline Send Email
Jul 18, 2005
2:20 pm
2592
Hi, I see 2 possible causes: 1. v, the parameter to setArray must be an array of 1 variant, so it should possibly be v = array[Variant(sa,false)] I don't know...
szschocke
Offline Send Email
Jul 18, 2005
2:38 pm
2593
Ciao Stefan, what i figured out in the meantime the following code is working: sa1 = SafeArray(enums.VarType.VARIANT, [0, 0], [3, 5]) sa1.setVariant([0,0],...
Ivan Horvath
pillesoft
Offline Send Email
Jul 18, 2005
2:48 pm
2594
Hi I get an error during compilation, saying that a generated wrapper class is clashing with the com.inzoom.comjni.NativeMemory class when I try to generate...
jonatanolofsson
Offline Send Email
Jul 18, 2005
3:24 pm
2595
Hi, in order to find out what is wrong here, I need to know the typelibrary you are trying to wrap - at least the method declaration. If you have oleview.exe...
szschocke
Offline Send Email
Jul 18, 2005
3:33 pm
2597
... Thank you for your answer. but I hava a different problem. jcw.MSHTML.* unknown type error. Where is jcw.MSHTML.* ??? mouzze....
mouzze00
Offline Send Email
Jul 19, 2005
1:13 am
2598
... As mentioned in prior message (http://groups.yahoo.com/group/jacoZoom/message/2589) IHTMLDocument interface is declared in the Microsoft HTML Object...
Hermann Scheibe
h_scheibe
Offline Send Email
Jul 19, 2005
7:45 am
2599
Here is the file you requested. Thanks a lot....
Jonatan Olofsson
jonatanolofsson
Offline Send Email
Jul 19, 2005
8:04 am
2600
Dear Stefan, did you receive this e-mail? i know that you cannot help me in jython, if you think this will never work, please tell me, i will pass a string...
Ivan Horvath
pillesoft
Offline Send Email
Jul 19, 2005
8:16 am
Messages 2568 - 2600 of 4588   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help