Re: Can map share...sometimes?

2003-08-06 Thread Carl Campbell
Well, what is the exact error message that you're getting? (hint: perl -w) - Original Message - From: Burns, Tom (Consultant) [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 05, 2003 6:22 AM Subject: RE: Can map share...sometimes? ug.I created a typo in the code

RE: Mail Question.

2002-11-05 Thread Carl Campbell
Title: Message If you are trying this on the context of an (MS) Exchange server, then it simply won't work, as I believe thatExchange uses the current network login credentials, as a way to validate the request being made. I think someone wrote a module for interacting with MS Exchange.

RE: MSAccess file format question...

2002-02-28 Thread Carl Campbell
On Thu, 28 Feb 2002, Morse, Richard E. wrote: H... however, I don't need to just create a blank database -- the idea is to be able to have a cgi extract data from an Oracle database and create an Access database with the data in it, and then return that via HTTP download... In order to

Re: MSAccess file format question...

2002-02-28 Thread Carl Campbell
On Thu, 28 Feb 2002, Morse, Richard E. wrote: Hi! For a particular application (actually, a CGI) I am writing, I want to be able to create a .mdb (access 2000 version) file. However, if possible, I want to avoid actually opening access. Is there some reference that would tell me what the

RE: create an NT user with Perl

2001-12-05 Thread Carl Campbell
use Win32::NetAdmin; use Win32::Lanman; use Win32::AdminMisc; -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jorge Goncalvez Sent: Tuesday, December 04, 2001 3:50 AM To: [EMAIL PROTECTED] Subject: RE:create an NT user with Perl HI, I

RE: SMTP

2001-11-15 Thread Carl Campbell
Before you issue the 'quit' method, you should instruct the server that you're not sending anymore data: $objMail-datasend($body); # Should it have a trailing \n ? $objMail-dataend(); # $objMail-quit;# -Original Message- From: [EMAIL PROTECTED]

RE: regular expression question

2001-05-31 Thread Carl Campbell
Not really a regex approach but here is my submittion: $OK = c:\\temp\\test\\test1\\test2; $your_answer = substr($OK, 0, rindex($OK, \\)); # print $your_answer,\n; -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 31, 2001

RE: Scheduled Tasks

2001-04-18 Thread Carl Campbell
I use it, all the time. It has to do with the permission scheme that the account has, when the script runs. If your scheduled job is supposed to handle anything involving a network resource, you need to ensure that the SCHEDULER service is using a domain account with adequate permissions to

RE: The Perl Journal - Dead for good?

2001-04-10 Thread Carl Campbell
Grabowski [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 10, 2001 9:44 AM To: Carl Campbell; '[EMAIL PROTECTED]' Subject: Re: The Perl Journal - Dead for good? Does anyone know if TPJ is officially "dead" ? When this discussion popped up on Slashdot I hurried up and ordered some b

RE: SQL Question

2001-02-16 Thread Carl Campbell
You need to format your dates, in a way that SQL understands them. Try rearranging them like so: -MM-DD -Original Message- From: steve silvers [mailto:[EMAIL PROTECTED]] Sent: Friday, February 16, 2001 6:19 AM To: [EMAIL PROTECTED] Subject: SQL Question Im running MS

RE: Printing Files via Microsoft Word

2001-02-06 Thread Carl Campbell
# # This script will scan for MS Word files, through a specified path, # and print them to the default printer. # # This code should be modified to keep the OLE server alive (as opposed # to killing it every time it is needed). Doing so will make this script # run much faster. # use

RE: Module for getting data from MS spreadsheet

2001-01-24 Thread Carl Campbell
Forgive me if I misunderstood your plea but, isn't Win32::OLE good enough? I use _all_the_time_, for tasks such as the one you describe. The company I work for, receives data in various spreadsheets (Lotus 123, MS Excel) and, various scripts using this module, extracts the data and posts them to