Hi all,
I wrote a module that is like Inline.pm,
and works only in Windows.
It use not Inline.pm but Windows Script Control.
Here's a bit of sample code showing how to use Script Control.
use Win32::OLE ;
my $sc = Win32::OLE->new( 'ScriptControl' ) ;
$sc->{language} = 'VBScript' ;
$sc->addcode( << 'VBS' ) ;
Sub Hello
MsgBox "Hi! I am VBScript!"
End Sub
VBS
$sc->run( 'Hello' ) ;
We use any programming language which supports Windows Script engine.
VBScript, JScript, PythonScript, RubyScript, and PerlScript!!
When I was drinking chocolate milk,
I thought that Script Control could be applied to Inline module!
Download it at
http://www20.big.or.jp/~sao/temp/Win32-Inline-0.01.zip
Sorry for my english.
see also
[1] Windows Script Control
http://msdn.microsoft.com/downloads/default.asp?URL=/downloads/sample.asp?url=/msdn-files/027/001/732/msdncompositedoc.xml
--
SH
[EMAIL PROTECTED]