On 5/10/06, Christian Cypert <[EMAIL PROTECTED]> wrote:
We get the following error in a compiled db if I declare a process
variable in an Active4D script.

c_blob(PassBlob)
Expecting a variable or a collection item.


I have an Active4D method that needs to call a 4D method. The only
parameter to the 4D method needs to be a pointer to a blob.

Christian,

We had this same issue, I think Brad helped us get through it before. In your code above, the pointer to PassBlob (used in A4D code) needs
to be declared in 4D code before it is compiled.

So,

in 4D code:
c_blob(PassBlob)

then in A4D code you can write:
c_blob(PassBlob)
use_blob_method(->PassBlob)

That is how it ended up working for us.

Thanks,

Michael Check
_______________________________________________
Active4D-dev mailing list
[email protected]
http://mailman.aparajitaworld.com/mailman/listinfo/active4d-dev
Archives: http://mailman.aparajitaworld.com/archive/active4d-dev/

Reply via email to