From chicks at chicks.net Sun Dec 3 15:43:12 2000 From: chicks at chicks.net (chicks@chicks.net) Date: Thu Aug 5 00:08:12 2004 Subject: [HRPM] December Meeting Message-ID: Matt voted for Bowling. I vote for pool. Does anyone know of a good bowling alley that has half-decent pool tables in the area? There's one up in Yorktown with pretty mediocre pool tables, but I'd like something closer to the bridges. All suggestions welcome.... -- "Pinky, you've left the lens cap of your mind on again." - The Brain From mshivers11 at home.com Sun Dec 3 16:49:42 2000 From: mshivers11 at home.com (Matt Shivers) Date: Thu Aug 5 00:08:12 2004 Subject: [HRPM] December Meeting References: Message-ID: <000701c05d7b$5377e1e0$a58e1718@nwptn1.va.home.com> Pool is cool with me if you have a specific (convenient) pool hall in mind. Matt ----- Original Message ----- From: To: "HRPM" Sent: Sunday, December 03, 2000 4:43 PM Subject: [HRPM] December Meeting > Matt voted for Bowling. I vote for pool. Does anyone know of a good > bowling alley that has half-decent pool tables in the area? There's one > up in Yorktown with pretty mediocre pool tables, but I'd like something > closer to the bridges. All suggestions welcome.... > > -- > > > "Pinky, you've left the lens cap of your mind on again." - The Brain > From cusce at home.com Sun Dec 3 22:12:52 2000 From: cusce at home.com (Collin Cusce') Date: Thu Aug 5 00:08:12 2004 Subject: [HRPM] December Meeting References: Message-ID: <001501c05da8$78fadfd0$40941718@cx782347a> There is SpareTimes in Hampton that is near the Coliseum. Last time I was there it was a redneck crowd, but I heard it has been ghettofyed since then (blame Iverson). There was another one closer to the James River Bridge in NewMarket South, but I am not sure if it closed due to NewMarket Mall's demise. ----- Original Message ----- From: To: "HRPM" Sent: Sunday, December 03, 2000 4:43 PM Subject: [HRPM] December Meeting > Matt voted for Bowling. I vote for pool. Does anyone know of a good > bowling alley that has half-decent pool tables in the area? There's one > up in Yorktown with pretty mediocre pool tables, but I'd like something > closer to the bridges. All suggestions welcome.... > > -- > > > "Pinky, you've left the lens cap of your mind on again." - The Brain > From chicks at chicks.net Sat Dec 23 07:37:37 2000 From: chicks at chicks.net (chicks@chicks.net) Date: Thu Aug 5 00:08:12 2004 Subject: [HRPM] Perl & Outlook Message-ID: I thought this might be of interest to some - how to interface perl and Outlook. Also - I haven't been very proactive in figuring out a location for our social get together next week. Can people let me know if they're planning on attending? With the flu and the weather I haven't been too enthusiastic about scouting locations which I had planned on doing last week. -- If you're not part of the solution, you're part of the precipitate. - Steven Wright ---------- Forwarded message ---------- Message: 13 From: "Reiner Buehl" To: Subject: RE: Perl & Outlook Date: Fri, 22 Dec 2000 14:57:07 +0100 This is a multi-part message in MIME format. ------=_NextPart_000_0008_01C06C27.74176AF0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Hi, attached are two samples that I got to work after spending hours on it. The filenames should speak for themselves. One thing that I never got to work was selecting a different Mail account than the default account. If anybody can explain how to do that, I would be very interested. Best Regards, Reiner. > -----Original Message----- > Could anyone please tell me if there are examples out there on the web of > using Perl and Outlook? How can I used perl to access PST files? Are there > any resources available? ------=_NextPart_000_0008_01C06C27.74176AF0 Content-Type: application/octet-stream; name="CreateFolder.pl" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="CreateFolder.pl" use strict; use Win32::OLE; use Win32::OLE::Const 'Microsoft Outlook'; my $Outlook = Win32::OLE->new('Outlook.Application', 'Quit'); my $ol = Win32::OLE::Const->Load($Outlook); my $namespace = $Outlook->GetNamespace("MAPI"); my $Folder = $namespace->GetDefaultFolder(olFolderInbox); my $NewFolder = $Folder->Folders->Add("Test1"); ------=_NextPart_000_0008_01C06C27.74176AF0 Content-Type: application/octet-stream; name="OutlookSend.pl" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="OutlookSend.pl" use strict; use Win32::OLE; use Win32::OLE::Const 'Microsoft Outlook'; my $Outlook = Win32::OLE->new('Outlook.Application', 'Quit'); my $ol = Win32::OLE::Const->Load($Outlook); my $namespace = $Outlook->GetNamespace("MAPI"); my $Folder = $namespace->GetDefaultFolder(olFolderInbox); my $NewMail = $Outlook->CreateItem(olMailItem); $NewMail->Recipients->Add("user\@host.domain.net"); $NewMail->{Subject} = "Test Message via Perl"; $NewMail->{Body} = "Test Message Body\n\nBest Regards,\nReiner.\n"; $NewMail->Send; ------=_NextPart_000_0008_01C06C27.74176AF0-- From cusce at home.com Sat Dec 23 21:12:11 2000 From: cusce at home.com (Collin Cusce') Date: Thu Aug 5 00:08:12 2004 Subject: [HRPM] Perl & Outlook References: Message-ID: <000b01c06d57$4e7cadb0$40941718@cx782347a> Ok, I will be coming after all. The date of my trip has changed and I wont be leaving until Friday. Unfortunately, since this is a recent change, I did not have the opportunity to reserve a room for us at the Lab. I'm sorry I was unable to shed some light on the locations issue, but I will be able to attend. - I see stupid people. They're everywhere. They walk around like everyone else. They don't even know they're stupid. ----- Original Message ----- From: To: "HRPM" Sent: Saturday, December 23, 2000 8:37 AM Subject: [HRPM] Perl & Outlook > I thought this might be of interest to some - how to interface perl and > Outlook. > > Also - I haven't been very proactive in figuring out a location for our > social get together next week. Can people let me know if they're planning > on attending? With the flu and the weather I haven't been too > enthusiastic about scouting locations which I had planned on doing last > week. > > -- > > > If you're not part of the solution, you're part of the precipitate. > - Steven Wright > > ---------- Forwarded message ---------- > > Message: 13 > From: "Reiner Buehl" > To: > Subject: RE: Perl & Outlook > Date: Fri, 22 Dec 2000 14:57:07 +0100 > > This is a multi-part message in MIME format. > > ------=_NextPart_000_0008_01C06C27.74176AF0 > Content-Type: text/plain; > charset="iso-8859-1" > Content-Transfer-Encoding: 7bit > > Hi, > > attached are two samples that I got to work after spending hours on it. > The filenames should speak for themselves. One thing that I never got > to work was selecting a different Mail account than the default account. > If anybody can explain how to do that, I would be very interested. > > Best Regards, > Reiner. > > > -----Original Message----- > > Could anyone please tell me if there are examples out there on the web of > > using Perl and Outlook? How can I used perl to access PST files? Are there > > any resources available? > > ------=_NextPart_000_0008_01C06C27.74176AF0 > Content-Type: application/octet-stream; > name="CreateFolder.pl" > Content-Transfer-Encoding: 7bit > Content-Disposition: attachment; > filename="CreateFolder.pl" > > use strict; > use Win32::OLE; > use Win32::OLE::Const 'Microsoft Outlook'; > > my $Outlook = Win32::OLE->new('Outlook.Application', 'Quit'); > my $ol = Win32::OLE::Const->Load($Outlook); > > my $namespace = $Outlook->GetNamespace("MAPI"); > my $Folder = $namespace->GetDefaultFolder(olFolderInbox); > my $NewFolder = $Folder->Folders->Add("Test1"); > > > ------=_NextPart_000_0008_01C06C27.74176AF0 > Content-Type: application/octet-stream; > name="OutlookSend.pl" > Content-Transfer-Encoding: 7bit > Content-Disposition: attachment; > filename="OutlookSend.pl" > > use strict; > use Win32::OLE; > use Win32::OLE::Const 'Microsoft Outlook'; > > my $Outlook = Win32::OLE->new('Outlook.Application', 'Quit'); > my $ol = Win32::OLE::Const->Load($Outlook); > > my $namespace = $Outlook->GetNamespace("MAPI"); > my $Folder = $namespace->GetDefaultFolder(olFolderInbox); > my $NewMail = $Outlook->CreateItem(olMailItem); > > $NewMail->Recipients->Add("user\@host.domain.net"); > $NewMail->{Subject} = "Test Message via Perl"; > $NewMail->{Body} = "Test Message Body\n\nBest Regards,\nReiner.\n"; > > $NewMail->Send; > > ------=_NextPart_000_0008_01C06C27.74176AF0-- > > From mshivers11 at home.com Sun Dec 24 09:28:37 2000 From: mshivers11 at home.com (Matt Shivers) Date: Thu Aug 5 00:08:12 2004 Subject: [HRPM] Perl & Outlook References: Message-ID: <000b01c06dbe$2f6d9b20$6401a8c0@nwptn1.va.home.com> I am in town for the holidays, and I would like to attend our get together. I don't know of any good locations though. Matt ----- Original Message ----- From: To: "HRPM" Sent: Saturday, December 23, 2000 8:37 AM Subject: [HRPM] Perl & Outlook > I thought this might be of interest to some - how to interface perl and > Outlook. > > Also - I haven't been very proactive in figuring out a location for our > social get together next week. Can people let me know if they're planning > on attending? With the flu and the weather I haven't been too > enthusiastic about scouting locations which I had planned on doing last > week. > > -- > > > If you're not part of the solution, you're part of the precipitate. > - Steven Wright > > ---------- Forwarded message ---------- > > Message: 13 > From: "Reiner Buehl" > To: > Subject: RE: Perl & Outlook > Date: Fri, 22 Dec 2000 14:57:07 +0100 > > This is a multi-part message in MIME format. > > ------=_NextPart_000_0008_01C06C27.74176AF0 > Content-Type: text/plain; > charset="iso-8859-1" > Content-Transfer-Encoding: 7bit > > Hi, > > attached are two samples that I got to work after spending hours on it. > The filenames should speak for themselves. One thing that I never got > to work was selecting a different Mail account than the default account. > If anybody can explain how to do that, I would be very interested. > > Best Regards, > Reiner. > > > -----Original Message----- > > Could anyone please tell me if there are examples out there on the web of > > using Perl and Outlook? How can I used perl to access PST files? Are there > > any resources available? > > ------=_NextPart_000_0008_01C06C27.74176AF0 > Content-Type: application/octet-stream; > name="CreateFolder.pl" > Content-Transfer-Encoding: 7bit > Content-Disposition: attachment; > filename="CreateFolder.pl" > > use strict; > use Win32::OLE; > use Win32::OLE::Const 'Microsoft Outlook'; > > my $Outlook = Win32::OLE->new('Outlook.Application', 'Quit'); > my $ol = Win32::OLE::Const->Load($Outlook); > > my $namespace = $Outlook->GetNamespace("MAPI"); > my $Folder = $namespace->GetDefaultFolder(olFolderInbox); > my $NewFolder = $Folder->Folders->Add("Test1"); > > > ------=_NextPart_000_0008_01C06C27.74176AF0 > Content-Type: application/octet-stream; > name="OutlookSend.pl" > Content-Transfer-Encoding: 7bit > Content-Disposition: attachment; > filename="OutlookSend.pl" > > use strict; > use Win32::OLE; > use Win32::OLE::Const 'Microsoft Outlook'; > > my $Outlook = Win32::OLE->new('Outlook.Application', 'Quit'); > my $ol = Win32::OLE::Const->Load($Outlook); > > my $namespace = $Outlook->GetNamespace("MAPI"); > my $Folder = $namespace->GetDefaultFolder(olFolderInbox); > my $NewMail = $Outlook->CreateItem(olMailItem); > > $NewMail->Recipients->Add("user\@host.domain.net"); > $NewMail->{Subject} = "Test Message via Perl"; > $NewMail->{Body} = "Test Message Body\n\nBest Regards,\nReiner.\n"; > > $NewMail->Send; > > ------=_NextPart_000_0008_01C06C27.74176AF0-- > > From cusce at home.com Wed Dec 27 15:56:42 2000 From: cusce at home.com (Collin Cusce') Date: Thu Aug 5 00:08:12 2004 Subject: [HRPM] Perl & Outlook References: Message-ID: <001d01c0704f$e5ffae80$40941718@cx782347a> High, ummm.... Is there still a meeting today? Did I just miss a message or something? - I see stupid people. They're everywhere. They walk around like everyone else. They don't even know they're stupid. ----- Original Message ----- From: To: "HRPM" Sent: Saturday, December 23, 2000 8:37 AM Subject: [HRPM] Perl & Outlook > I thought this might be of interest to some - how to interface perl and > Outlook. > > Also - I haven't been very proactive in figuring out a location for our > social get together next week. Can people let me know if they're planning > on attending? With the flu and the weather I haven't been too > enthusiastic about scouting locations which I had planned on doing last > week. > > -- > > > If you're not part of the solution, you're part of the precipitate. > - Steven Wright > > ---------- Forwarded message ---------- > > Message: 13 > From: "Reiner Buehl" > To: > Subject: RE: Perl & Outlook > Date: Fri, 22 Dec 2000 14:57:07 +0100 > > This is a multi-part message in MIME format. > > ------=_NextPart_000_0008_01C06C27.74176AF0 > Content-Type: text/plain; > charset="iso-8859-1" > Content-Transfer-Encoding: 7bit > > Hi, > > attached are two samples that I got to work after spending hours on it. > The filenames should speak for themselves. One thing that I never got > to work was selecting a different Mail account than the default account. > If anybody can explain how to do that, I would be very interested. > > Best Regards, > Reiner. > > > -----Original Message----- > > Could anyone please tell me if there are examples out there on the web of > > using Perl and Outlook? How can I used perl to access PST files? Are there > > any resources available? > > ------=_NextPart_000_0008_01C06C27.74176AF0 > Content-Type: application/octet-stream; > name="CreateFolder.pl" > Content-Transfer-Encoding: 7bit > Content-Disposition: attachment; > filename="CreateFolder.pl" > > use strict; > use Win32::OLE; > use Win32::OLE::Const 'Microsoft Outlook'; > > my $Outlook = Win32::OLE->new('Outlook.Application', 'Quit'); > my $ol = Win32::OLE::Const->Load($Outlook); > > my $namespace = $Outlook->GetNamespace("MAPI"); > my $Folder = $namespace->GetDefaultFolder(olFolderInbox); > my $NewFolder = $Folder->Folders->Add("Test1"); > > > ------=_NextPart_000_0008_01C06C27.74176AF0 > Content-Type: application/octet-stream; > name="OutlookSend.pl" > Content-Transfer-Encoding: 7bit > Content-Disposition: attachment; > filename="OutlookSend.pl" > > use strict; > use Win32::OLE; > use Win32::OLE::Const 'Microsoft Outlook'; > > my $Outlook = Win32::OLE->new('Outlook.Application', 'Quit'); > my $ol = Win32::OLE::Const->Load($Outlook); > > my $namespace = $Outlook->GetNamespace("MAPI"); > my $Folder = $namespace->GetDefaultFolder(olFolderInbox); > my $NewMail = $Outlook->CreateItem(olMailItem); > > $NewMail->Recipients->Add("user\@host.domain.net"); > $NewMail->{Subject} = "Test Message via Perl"; > $NewMail->{Body} = "Test Message Body\n\nBest Regards,\nReiner.\n"; > > $NewMail->Send; > > ------=_NextPart_000_0008_01C06C27.74176AF0-- > > From chicks at chicks.net Wed Dec 27 16:47:50 2000 From: chicks at chicks.net (chicks@chicks.net) Date: Thu Aug 5 00:08:12 2004 Subject: [HRPM] Perl & Outlook In-Reply-To: <001d01c0704f$e5ffae80$40941718@cx782347a> Message-ID: On Wed, 27 Dec 2000, Collin Cusce' wrote: > High, ummm.... > Is there still a meeting today? Did I just miss a message or > something? I totally spaced that that was tonight. I haven't dug up a location and I'm in the middle of about three things today. Are there any major objections to letting me be a bum today? :-) Please...please...please. -- If you're not part of the solution, you're part of the precipitate. - Steven Wright From cusce at home.com Wed Dec 27 17:19:21 2000 From: cusce at home.com (Collin Cusce') Date: Thu Aug 5 00:08:12 2004 Subject: [HRPM] Perl & Outlook References: Message-ID: <004701c0705b$71c080b0$40941718@cx782347a> Im kewl with it. - I see stupid people. They're everywhere. They walk around like everyone else. They don't even know they're stupid. ----- Original Message ----- From: To: Sent: Wednesday, December 27, 2000 5:47 PM Subject: Re: [HRPM] Perl & Outlook > On Wed, 27 Dec 2000, Collin Cusce' wrote: > > > High, ummm.... > > Is there still a meeting today? Did I just miss a message or > > something? > > I totally spaced that that was tonight. I haven't dug up a location and > I'm in the middle of about three things today. Are there any major > objections to letting me be a bum today? :-) Please...please...please. > > -- > > > If you're not part of the solution, you're part of the precipitate. > - Steven Wright >