Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Perl Misc (http://www.velocityreviews.com/forums/f67-perl-misc.html)
-   -   I would like to use unsupported variant type VT_I8 and VT_UI4. (http://www.velocityreviews.com/forums/t882894-i-would-like-to-use-unsupported-variant-type-vt_i8-and-vt_ui4.html)

Stephan Meszaros 10-02-2003 04:11 PM

I would like to use unsupported variant type VT_I8 and VT_UI4.
 
Hi, I am a newbie with PERL and I writing a script to access some
ActiveX methods that are using VT_I8 and VT_UI4.
I have succeeded so far accessing other methods that are using the
supported types in the Win32::OLE::Variant module.

How hard would it be to add support for the VT_I8 and VT_UI4 variant
types?
Where do I start?

Thank you!
Stephan

Jay Tilton 10-03-2003 12:09 AM

Re: I would like to use unsupported variant type VT_I8 and VT_UI4.
 
grosmezz@yahoo.com (Stephan Meszaros) wrote:

: Hi, I am a newbie with PERL and I writing a script to access some
: ActiveX methods that are using VT_I8 and VT_UI4.
: I have succeeded so far accessing other methods that are using the
: supported types in the Win32::OLE::Variant module.
:
: How hard would it be to add support for the VT_I8 and VT_UI4 variant
: types?
: Where do I start?

It _might_ be as easy as adding them to the Win32::OLE::Variant module.

sub VT_UI4 {19;}
sub VT_I8 {20;}

Or it might require more work. Try asking ActiveState about it--contact
information is in the Win32::OLE documentation.



All times are GMT. The time now is 06:35 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57