RE: Win32:OLE Excel last row question.

2004-02-13 Thread Charbeneau, Chuck
> From: Beckett Richard-qswi266 [mailto:[EMAIL PROTECTED] > Subject: Win32:OLE Excel last row question. > This line successfully gives me the last used row in a populated > spreadsheet: > > my $LastRow = $sheet->UsedRange->Find({What=>"*", > SearchDirection=>xlPrevious, SearchOrder=>xlByRows})-

RE: List excel sheets

2004-01-23 Thread Charbeneau, Chuck
> From: Gianvittorio Negri [mailto:[EMAIL PROTECTED] > Subject: List excel sheets > I'm trying to list all the sheet contained in a single excel > file, in order build a script for > split a single excel multi-sheet in more single sheet excel > files using sheet name as file name. > The she

RE: Reading Mail from Exchange Folder

2004-01-14 Thread Charbeneau, Chuck
> -Original Message- > From: Richard DeWath [mailto:[EMAIL PROTECTED] > Subject: Reading Mail from Exchange Folder > I am just learning about this and need some pointers > on how I can write a Perl script that lets me read my > new mail on an Exchange server [assume the Inbox], > find ma

RE: OLE again

2003-10-01 Thread Charbeneau, Chuck
> From: Michael D. Smith [mailto:[EMAIL PROTECTED] > Subject: Re: OLE again > > In these examples from recent mailings to the list > my $IE = Win32::OLE->GetActiveObject( 'WebBrowser.Application' ); > my $Excel = Win32::OLE->GetActiveObject('Excel.Application') > The point in these example ab

RE: moving Excel Sheets via OLE

2003-08-14 Thread Charbeneau, Chuck
> From: [EMAIL PROTECTED] > Subject: moving Excel Sheets via OLE I'm in a bit of a hurry right now, or I'd type out the code, but: http://perlmonks.org/index.pl?node_id=153486 Bottom of my tutorial, Add and Move work the same. YMMV, some restrictions may apply. Chuck Charbeneau Lear Corporat

RE: Win32-OLE excel cell reference.

2003-08-10 Thread Charbeneau, Chuck
> From: Beckett Richard-qswi266 [mailto:[EMAIL PROTECTED] > Subject: Win32-OLE excel cell reference. > It seems that the Range command likes data like (A14), or > (A14:B26), and I am happy with this. > > My problem occurrs when I only have numeric data to work > with, because of incremented

RE: Win32-OLE excel cell reference.

2003-08-10 Thread Charbeneau, Chuck
> From: Ross Matt-QMR000 [mailto:[EMAIL PROTECTED] > Subject: RE: Win32-OLE excel cell reference. > by no means did mean anything negative about what you > wrote in reply. You have ALWAYS been very helpful to me and > others with your posts. No worries. I didn't take any offense, just offe

RE: How to recurse through a directory and do something with each file

2003-08-04 Thread Charbeneau, Chuck
> From: Subrahmanyam Vadlamani [mailto:[EMAIL PROTECTED] > Subject: How to recurse through a directory and do something > with each file > I would like to recurse through a directory and do > something with the files in the directory (and all sub-directories). > > What is the most efficient w

RE: dynamic reports

2003-07-30 Thread Charbeneau, Chuck
> From: steve silvers [mailto:[EMAIL PROTECTED] > Subject: Re: dynamic reports > Crystal Reports.. > >"Does anyone have a idea as to the best way to do this? > >Perl ? > >XML ? > >C and postgres ? All of the above an accomplish what you are looking for. Crystal offers you controls that dynam

RE: Cpan colors

2003-07-23 Thread Charbeneau, Chuck
Forgot to send this to everyone: Or he could go to: http://search.cpan.org click on the link which reads: "Why is this site Orange?" and leads here: http://search.cpan.org/orange.html And read how he can get it back. C-. ** ** LEGAL DISCLAIMER ** **

RE: Using Outlook in Win32::OLE

2003-06-17 Thread Charbeneau, Chuck
> From: Bautista, Rodel D.(Digitel-GSM) > Subject: FW: Using Outlook in Win32::OLE > I'm entirely at a loss here. I'm in dire need of help with my > problem below. I've tried searching for a perl script that > automatically connect/log me to an outlook application and > send a mail with an at

RE: Outlook 2000/XP

2003-04-01 Thread Charbeneau, Chuck
> From: Christopher Moss [mailto:[EMAIL PROTECTED] > Subject: RE: Outlook 2000/XP > Thanks for the suggestion Chuck I did manager to get there > with Mime-Lite, once I'd managed to work how it talked to the > SMTP server! The main issue being the send->("smtp", > [Hostname])line which slightl

RE: Outlook 2000/XP

2003-03-28 Thread Charbeneau, Chuck
> From: Christopher Moss [mailto:[EMAIL PROTECTED] > Subject: Outlook 2000/XP > I'm trying to test sending emails from Perl using OLE on MS Outlook > (2000 or XP). I have written the following simple script (mainly based > on previous postings): Seems like a lot of overhead to send an email.

RE: Excel question

2003-02-03 Thread Charbeneau, Chuck
> From: Rivera, Oscar [mailto:[EMAIL PROTECTED]] > Subject: Excel question > > > Hello, > I want to copy a range of cells (A2-F300) from a "export.csv" > file and append it to "myfile.xls" and save the file. can > some one help? a CSV file really doesn't contain the row, column information,

RE: Making a line graph

2002-12-04 Thread Charbeneau, Chuck
> From: Ian Robertson [mailto:[EMAIL PROTECTED]] > Subject: Making a line graph > I need to write a script to produce a line graph > (quick and dirty to prove a point)! >Can anybody recommend the best module to use? The Chart module offers a quick interface. C-. use strict; use Chart::Li

RE: Excel, OLE, and Activestae PERL 5.6.1 rel 633 on Windows 2K.

2002-10-30 Thread Charbeneau, Chuck
> From: Daniel Needles [mailto:daniel.needles@;Callisma.com] > Subject: Excel, OLE, and Activate PERL 5.6.1 rel 633 on Windows 2K. > The following program: [SNIP] > > C:\Documents and Settings\dln1\AANC>perl test.pl > > Win32::OLE(0.1502) error 0x80070005: "Access is denied" in > PROPERTYPUT

RE: manipulating Excel

2002-09-11 Thread Charbeneau, Chuck
> From: Beckett Richard-qswi266 [mailto:[EMAIL PROTECTED]] > Subject: RE: manipulating Excel > I have two (silly) questions, already... Nothing is silly if in the pursuit of knowledge. > I have an excel file in the directory that the script is > running from, called results.xls, however I ca

RE: manipulating Excel

2002-09-11 Thread Charbeneau, Chuck
> From: Jacobson, Karl [mailto:[EMAIL PROTECTED]] > Subject: manipulating Excel > > > I would like to change formats and the like in Excel. Is > that possible > (within my Perl scripts of course) and where would I find > information on this? I wrote a tutorial on Perlmonks on just this to

RE: Displaying time in PERL

2002-08-09 Thread Charbeneau, Chuck
> From: Bellenger, Bruno (Paris) [mailto:[EMAIL PROTECTED]] > Subject: RE: Displaying time in PERL > Shortest one so far. And not even bad on the obfuscation criteria. > Well done. > > printf ("%02d:%02d:%02d",(localtime(time))[2,1,0]); I can't take credit for it, I saw someone else use a sl

RE: Displaying time in PERL

2002-08-09 Thread Charbeneau, Chuck
> From: Charbeneau, Chuck [mailto:[EMAIL PROTECTED]] > Subject: RE: Displaying time in PERL > > > printf ("%02d:%02d:%02d",(localtime(time))[2,1,0]); > > Chuch Charbeneau ^ | But how can you trust the code from a man who can't s

RE: Displaying time in PERL

2002-08-09 Thread Charbeneau, Chuck
printf ("%02d:%02d:%02d",(localtime(time))[2,1,0]); Chuch Charbeneau ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

RE: Newton Raphson's or Bisection Interpolation in perl

2002-06-07 Thread Charbeneau, Chuck
> From: parvez [mailto:[EMAIL PROTECTED]] > Subject: Newton Raphson's or Bisection Interpolation in perl > Does anybody know of a module that helps in interpolation using > Newton Raphson's method or Bisection method in Perl. Wolf book, Chapter 16, pgs. 638 - 640. You can probably get the

RE: Problem Converting a Timestamp in Excel

2002-05-20 Thread Charbeneau, Chuck
-Original Message- From: Arul, Rex [mailto:[EMAIL PROTECTED]] Subject: Problem Converting a Timestamp in Excel > Hello Friends, > In the Excel spreadsheet, I am trying to cull out data, there > is a column with values of this format: 22:15 (10:15:00 PM) > However, while trying to get t

RE: Distance between 2 latitudes and longitudes

2002-03-06 Thread Charbeneau, Chuck
This time, I'll post it to the list: > From: Lee Goddard [mailto:[EMAIL PROTECTED]] > Subject: Re: Distance between 2 latitudes and longitudes > At 10:14 06/03/2002 -0600, MOTTER, JEFFREY D. wrote: > >Does any know where I can find a script to calculate the > distance between 2 > >seperate lati

RE: disk quota

2001-11-12 Thread Charbeneau, Chuck
> From: lonh SENG [mailto:[EMAIL PROTECTED]] > Subject: disk quota > Can you help me? Yes, we can. > I want to write a script to create disk quota for all home > directories of all users. Their sizes are the same. As a matter of fact, I wrote exactly that for the ME department at Michigan

RE: Editing word documents

2001-10-10 Thread Charbeneau, Chuck
> From: Christopher Hahn [mailto:[EMAIL PROTECTED]] > Subject: RE: Editing word documents > I wanted to ask again whether anyone had found a useful > *book* that deals with OLE from perl. MS's MSDN site seems > designed so as to spread the info out to such an extent that > I do not see the big p

RE: OLE Resource

2001-07-05 Thread Charbeneau, Chuck
Typo - Should have been: "WIN32 Perl Scripting: The Administrator's Handbook". Sorry. Chuck. ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

RE: OLE Resource

2001-07-05 Thread Charbeneau, Chuck
> From: Wells, Doug [mailto:[EMAIL PROTECTED]] > Subject: OLE Resource > What are some good books/resources for learning more about > Perl/OLE scripting? Also, Dave Roth's books have been an INCREDIBLE resource for me. Look for "WIN32 Perl Programming: The Standard Extensions" and "WIN32 Scr

RE: Perl-Editor

2000-10-31 Thread Charbeneau, Chuck
> From: Ralf Lister [mailto:[EMAIL PROTECTED]] > can someone point me to a free Perl-Editor? In a message from 3 days ago, I responded to this VERY question with the following: Straight from the http://mailarchive.activestate.com/ to you: This has been hashed out so many times, someone actual