Database
perlcom.txt
Associated article: Examining PerlCOM
Tags: Database
Published source code accompanying the article by Mike McMillan in which he examines PerlCOM, from O'Reilly & Associates, which lets you use Perl in any language or application that supports Microsoft Component Object Model (COM) objects. Mike shows you how to use it to extend Visual Basic.
Examining PerlCOM
by Mike McMillan
Listing One
objPerl.EvalScript " sub my_greet { " & _
" my $name = shift; " & _
" return qq[Hello, $name.]; } "
strName = "Charlie"
MsgBox objPerl.my_greet(strName)
Listing Two
Dim objPerl ...


