RE: passing arrays to COM objects by ref - dll

2007-10-02 Thread Dave Watts
I've been provided a .dll with a number of procedures written in VB5. The function I'm trying to access requires three inputs as arrays, the last one being an empty array (with a length) for it to store the results and return. The function requires all of the arrays by ref. I tried just

Re: passing arrays to COM objects by ref - dll

2007-10-02 Thread P McKinnon
I've been provided a .dll with a number of procedures written in VB5. The function I'm trying to access requires three inputs as arrays, the last one being an empty array (with a length) for it to store the results and return. The function requires all of the arrays by ref. I tried just

RE: passing arrays to COM objects by ref - dll

2007-10-02 Thread Dave Watts
Hi Dave, thanks for the suggestions. I'll have to go the 'wrapper' route since I can't access the guts of the .dll, it's from an agency that is nutsy-cookoo about protecting the code. Do you have any suggestions for resources on creating wrappers? Not offhand. I'd just Google Windows

Re: Passing Arrays/ResultSet between CF and JavaBean

2002-11-21 Thread Joe Eugene
I guess there is no Answer to this Question Well FYI.. for anybody interested.. I ran a test switching JVM's from 1.3.1 to 1.4.0 ..The peformance gain was like 41% over 1.3.1 JVM...This is really interesting... Anybody else ran any tests, what are your results? If you need any help testing..

Re: Passing Arrays to Custom Tags

2002-03-25 Thread Sharon Diorio
You need to evaluate the array. cf_ShoppingCart Action=GET Scope=CART Value=ALL varName=#myCart# Sharon - Original Message - From: Jared Stark [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, March 25, 2002 6:07 PM Subject: Passing Arrays to Custom Tags Hello all, My

Re: Passing Arrays to Custom Tags

2002-03-25 Thread Jared Stark
DOH! Thanks :) - Original Message - From: Sharon Diorio [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, March 25, 2002 4:15 PM Subject: Re: Passing Arrays to Custom Tags | You need to evaluate the array. | | cf_ShoppingCart Action=GET Scope=CART Value=ALL varName=#myCart

RE: Passing Arrays

2002-02-19 Thread Raymond Camden
Your code below should work fine - you probably have an issue in your UDF code. Can you share that? === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My

Re: Passing arrays to a popup

2001-11-25 Thread Don Vawter
in the popup window you can refer to the elements in the main window using js by opener.document.forms[0].elements which is a collection of all the form fields. - Original Message - From: Bruce Sorge [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, November 25, 2001 9:02 PM

Re: Passing arrays to a popup

2001-11-25 Thread Bruce Sorge
: Don Vawter [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, November 25, 2001 10:12 PM Subject: Re: Passing arrays to a popup in the popup window you can refer to the elements in the main window using js by opener.document.forms[0].elements which is a collection of all the form

Re: Passing arrays to a popup

2001-11-25 Thread Don Vawter
- Original Message - From: Bruce Sorge [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, November 25, 2001 9:27 PM Subject: Re: Passing arrays to a popup I am JavaScript stupid. My knowledge is just enough to be dangerous. I suppose that this is the wrong context