Re: opening outlook

2004-10-24 Thread Mike G.
Well it is supposed to work like this... use warnings; use strict; use warnings 'uninitialized'; use Win32::OLE; use Win32::OLE::Const 'Microsoft Outlook'; use Win32::OLE qw(in with); use Win32::OLE::Variant; my $outlook = Win32::OLE->new('Outlook.Application', 'Quit'); my $NameSpace = $outlook

Re: use Strict

2004-10-24 Thread $Bill Luebkert
MJG wrote: > For those of you that are big fans of this, I see value in using it. > > How would I set this situation up: > > $List{$key}=...code > > Do I do this > > my $List = ''; my $key = ''; > > This doesn't seem to make sense though. I usually place the variable definitions just before

Re: GUI front End

2004-10-24 Thread Suresh Govindachar
Hello, In regard to data exchange between perl and vb, BigAL wrote on 20 Oct 2004 17:36:23 -1000 that he > ended up opening up a vb tcp server and pushed > perl output to Where can I find documentation and/or sample code about the VB portion of the solution? Thanks, --Suresh ___

Re: use Strict

2004-10-24 Thread Glenn Linderman
On approximately 10/24/2004 4:06 PM, came the following characters from the keyboard of MJG: For those of you that are big fans of this, I see value in using it. How would I set this situation up: $List{$key}=...code Do I do this my $List = ''; my $key = ''; This doesn't seem to make sense though

use Strict

2004-10-24 Thread MJG
For those of you that are big fans of this, I see value in using it. How would I set this situation up: $List{$key}=...code Do I do this my $List = ''; my $key = ''; This doesn't seem to make sense though. Thanks MJG ___ Perl-Win32-Users mailing

DB_File and Storable glitch??

2004-10-24 Thread michael higgins
List folks -- I wanted to tie an array to a file and store references. I want the data available to the next session, so I need Storable, or something like it. I do this with hashes all the time, but never with an array. What I found is that it didn't work as I expected it would. I looked a lit

Perl/ASP code for ecommerce site ?

2004-10-24 Thread Jasper Marzin
Hi I wanted to throw up on the web a simple ecommerce web application for an online store that works with mysql, html, dynamic content, etc.  Instead of writing one from scratch does anyone know where to download source code (preferably complete) to get started ?   Thank you,   Jasper__

Re: mailcap replacement for windows

2004-10-24 Thread Suresh Govindachar
* Moshe Kaminsky Sent on 19 Oct 2004 22:32:50 +0200: > I'm looking a perl module that provides functionality > similar to Mail::Cap, but for windows (or better yet, > platform independently). Specifically, I would like to > be able to: > > - view data with the system default viewer for the >

Re: Internet Explorer

2004-10-24 Thread $Bill Luebkert
Wenjie Wang wrote: > The above codes works fine for the orginal request form MJG. > > What if I've set the active scripting to "prompt" in my "IE security > Setting" and I've visiting a site which has VBScript or JavaScript. > Normally, it'll popup a prompt and ask you "do you want to proceed" >