Dim objPC As Object
Set objPC = CreateObject("PerlCOM.Script")
' Create an object with all the methods of
' the LWP::Simple module.
Dim objLWPSimple As Object
Set objLWPSimple = objPC.UsePackage("LWP::Simple") |
' Fetch a URL and display the response
txtData.Text = _
objLWPSimple.get("http://localhost/PerlInside/README") |
| Forward to PerlCOM Example: Demo
Back to PerlScript Example: Demo Up to PerlInside section index Up to Perl Inside course index |
Perl Inside: PerlInside - 28
Copyright © 1999, Brian Jepson
|