RE: Win32::OLE Question

2003-01-28 Thread Timothy Johnson
Wow! Thanks. -Original Message- From: Webb, Andy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 3:55 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: Win32::OLE Question Off the top of my head, I don't remember. Get a copy of outlookspy from www.dimastr.com and see

RE: Win32::OLE Question

2003-01-28 Thread Webb, Andy
Off the top of my head, I don't remember. Get a copy of outlookspy from www.dimastr.com and see what the prop changes look like. === Andy Webb[EMAIL PROTECTED] www.swinc.com Simpler-Webb, Inc. Austin, TX512-322-00

RE: Win32::OLE Question

2003-01-28 Thread Timothy Johnson
How long is "A" in this example? -Original Message- From: Webb, Andy [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 3:40 PM To: [EMAIL PROTECTED] Subject: RE: Win32::OLE Question Well, imagine you have a set of messages with conversationIndex (CI): msgA: CI=A msgB: CI=B ms

RE: Win32::OLE Question

2003-01-28 Thread Webb, Andy
Well, imagine you have a set of messages with conversationIndex (CI): msgA: CI=A msgB: CI=B msgC: CI=AC msgD: CI=ACD msgE: CI=BE msgF: CI=ACF The threading looks like: +msgA |-+msgC | |--msgD | |--msgF +msgB |--msgE -Original Message- From: Reinfeldt, Matt [mailto:[EMAIL PROTECTED]] Pos

Win32::OLE Question

2003-01-28 Thread Reinfeldt, Matt
Hi Folks, I've been knocking my brains out on this, and am hoping you all will have some input. I need to parse through some Outlook Public Folders and dump the e-mails stored in them into a different system (mysql based forum software). I've finally gotten the script to grab all the e-mails fro

RE: Bell Curves and Random numbers

2003-01-28 Thread Cliff
If you look online at a text called "Numerical Recipes in C" you will find several random number generators. All of those should be Perl-able. -~.-~.-~.-~.-~.-~.-~.-~.-~.-~ -~ -~ Cliff Frensley -~ [EMAIL PROTECTED] -~ Seattle, WA -~ -~ -. On Tue, 28 Jan 2003, Cliff wrote: > If you look in

RE: Bell Curves and Random numbers

2003-01-28 Thread Cliff
If you look in a book most of which is available on line called "Numerical Recipes in C", then you can probably pull out the receipe for a random number generator such as rand1 or rand2. Those should be perlable -~.-~.-~.-~.-~.-~.-~.-~.-~.-~ -~ -~ Cliff Frensley -~ [EMAIL PROTECTED] -~ Seat

RE: Bell Curves and Random numbers

2003-01-28 Thread Cliff
There is a perl function "exp" - that is, the natural exponential function. A Gaussian bell curve is defined by a function like: y(x) = A*exp( ((x-s)/t)^2) The exact functional form I just typed might be incorrect, look up the exact function in any basic math, science, or statistics text. Look

RE: Bell Curves and Random numbers

2003-01-28 Thread Russ Foster
Want to give any hints on how to accomplish this in Perl? -Original Message- From: Cliff [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 28, 2003 11:04 AM To: Russ Foster Cc: '[EMAIL PROTECTED]' Subject: Re: Bell Curves and Random numbers Ultimately, the distribution is shaped and det

Re: Bell Curves and Random numbers

2003-01-28 Thread Cliff
Ultimately, the distribution is shaped and determined by your distribution function. In your bell curve, you need to reduce the size of the standard deviation, that is, sigma in the exponent. You can do that fairly simply by simply making the guassian standard deviation sigma an input parameter

RE: Problem creating directories

2003-01-28 Thread Glenn Meyer
Thank you all for your help. I have found the problem but it wasn't a code problem but a path issue. My script uses and "ini" or options file because we will be rolling the script into an .exe. My problem again was that the script wasn't creating the directory path when running from the AT

RE: Detecting $ARGV[0]

2003-01-28 Thread Glenn Meyer
Thank you all for your excellent tutoring - you suggestions gave me several options that work. Thank you! ___ Perl-Win32-Admin mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Bell Curves and Random numbers

2003-01-28 Thread Russ Foster
I'm looking to generate a bunch of random information to be used for testing. Right now, my script accepts three parameters, quantity, a central point, and a deviation range and then generates [quantity] numbers ranging from [central point - deviation range] to [central point + deviation range].

RE: Win32 ODBC and SQL Insert error.

2003-01-28 Thread Gerber, Christopher J
> -Original Message- > From: Ross Draper [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, January 28, 2003 6:15 AM > > Wahoo! I owe you a beer :-) > > That did the trick. Its inserted into the Database quite happily. > > I think I'll need to use both that and a filter for > apostrophes in

RE: Win32 ODBC and SQL Insert error.

2003-01-28 Thread extern . Lars . Oeschey
> To be honest, I don't think I've ever had to pull a > REG_MULTI_SZ file from > the registry, but from what I understand the way they are > stored is as a > list of strings with a null terminator between them and a > double-null at the > end. I'm not sure how you would show that in Perl. I wo

RE: Win32 ODBC and SQL Insert error.

2003-01-28 Thread Ross Draper
Wahoo! I owe you a beer :-) That did the trick. Its inserted into the Database quite happily. I think I'll need to use both that and a filter for apostrophes in the future to make 100% sure I dont get anything untoward passed to the ODBC driver. Many thanks to everyone who replied to me, you