RE: Bitmap Display

2005-02-24 Thread henry
Ken, Thanks. That works just fine for me.     -Henry From: Ken CornetetSent: Thu 2/24/2005 9:55 AMTo: henry; perl-win32-users@listserv.ActiveState.com; perl-win32-admin@listserv.ActiveState.comSubject: RE: Bitmap Display Drive IE via OLE use strict; use Win32; use Win32::OLE; my $ie = Win32

RE: How to selectively strip tags from text

2005-02-24 Thread Charles K. Clarkson
Craig <> wrote: : Now I need something I can apply more judiciously. Any : hints, tips, or suggestions would be appreciated. You may find HTML::TagFilter useful. HTH, Charles K. Clarkson -- Mobile Homes Specialist 254 968-8328 ___ Perl-Win32-Us

Re: Can't use $\ to force line termination to 0x0a

2005-02-24 Thread Chris Wagner
I've beaten myself up on similar line termination problems. It's really something that's poorly documented if u ask me. I think part of ur confusion comes from the fact that there's 3 layers involved that have nothing to do with each other. \n is the system local new line sequence, which only ha

RE: Bitmap Display

2005-02-24 Thread Ken Cornetet
Drive IE via OLE use strict; use Win32; use Win32::OLE; my $ie = Win32::OLE->new('InternetExplorer.Application'); $ie->Navigate("about:blank"); $ie->{Toolbar} = 0; $ie->{StatusBar} = 0; $ie->{Width} = 800; $ie->{Height} = 400; $ie->{Left} = 0; $ie->{Top} = 0; while( $ie->{Busy} ) { Win32::Sle

RE: Email to fax

2005-02-24 Thread Chris
-Original Message- > Do you really need a server to do this? Why can't you keep it > simple and run Pegasus email (free - Windows regular email > software)? In the filters you can easily write any email to a text file > and run a program. The program would print the text file to a fa

Re: How to selectively strip tags from text

2005-02-24 Thread $Bill Luebkert
Craig Cardimon wrote: > I need to strip HTML-style "<" and ">" tags and their contents from > ASCII text while not disturbing customized tags that might say or > . Is there a way to do this without going bonkers? > > I'm using > > *** > > s/<(?:[^>'"]*|(['"]).*?\1)*>//gs; > > *** > > to st

How to selectively strip tags from text

2005-02-24 Thread Craig Cardimon
I need to strip HTML-style "<" and ">" tags and their contents from ASCII text while not disturbing customized tags that might say or . Is there a way to do this without going bonkers? I'm using *** s/<(?:[^>'"]*|(['"]).*?\1)*>//gs; *** to strip all angle braces from the text. It works like gan

RE: Template to remove local admin privileges on a windows NT comps.

2005-02-24 Thread Mulley, Nikhil
refer to Win32::NetAdmin Module..   -Nikhil -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]On Behalf Of Mungamuru, Sasi Kiran KumarSent: Thursday, February 24, 2005 4:32 PMTo: perl-win32-users@listserv.ActiveState.comSubject: Template to remove l

Template to remove local admin privileges on a windows NT comps.

2005-02-24 Thread Mungamuru, Sasi Kiran Kumar
Good Evening all,         Could you please pass out a template in perl for to remove local admin privileges for existing users in windows NT environment.   Thanks, ~Sasi ___ Perl-Win32-Users mailing list Perl-Win32-Users@listserv.ActiveState.co