Re: Compilation of Inline::Ruby on win32

2007-08-10 Thread Sisyphus

- Original Message - 
From: Ed S. Peschko [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: Jan Dubois [EMAIL PROTECTED]; Eric Promislow 
[EMAIL PROTECTED]; Gisle Aas [EMAIL PROTECTED]; 
perl-win32-users@listserv.ActiveState.com; Todd Whiteman 
[EMAIL PROTECTED]
Sent: Thursday, August 09, 2007 4:15 PM
Subject: [SPAM?] Compilation of Inline::Ruby on win32


 All,

 I'm trying to compile Inline::Ruby on win32, using visualc++ v6 and
 activestate perl, without too much luck, in trying to get HttpWatch
 to work with perl.

 In particular, I'm having difficulty with the headers.

As it stands, signal.h and Win32 perl are incompatible. You can't #include 
signal.h on Win32 when building perl extensions. And I think signal.h gets 
pulled in as soon as you #include ruby.h.

So it looks like an impasse to me - though, faik, it may be possible to hack 
your way through it.

---
C:\_32\pscrpt\inlinetype try.pl

use warnings;

use Inline C = 'EOC';

#include signal.h

void foo() {
 printf(Hello World\n);
}

EOC

foo();

C:\_32\pscrpt\inlineperl try.pl
.
snipped
.
In file included from try_pl_3fe7.xs:6:
C:/_32/MinGW/bin/../lib/gcc/mingw32/3.4.5/../../../../include/signal.h:84: 
error: syntax error before '(' token
dmake:  Error code 129, while making 'try_pl_3fe7.o'
.
snipped
.
BEGIN failed--compilation aborted at try.pl line 12.

---

I could find ppm's for many of the Inline::* modules, but not Inline::Ruby - 
which also is not a good sign.

Cheers,
Rob 

___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


win32::ole (excel) question

2007-08-10 Thread dkazatsky
Hi all,

Weird situation with creating new worksheets and keeping the title in the
tab.  I f I create just one everything is fine - when I add a second
worksheet to the workbook the title goes away from the original  worksheet.

Code excerpt:

This is where the object is instanciated and the first worksheet is created
and named:

#--create and open the first worksheet
my $excel = Win32::OLE-new(Excel.Application);
$excel-{Visible} = 1;
my $book = $excel-Workbooks-Add;
my $sheet = $book-Worksheets(1);
$sheet-{Name} = Daily Message Volume By Queue Manager;

**cells are filled in and formatted - everything looks great to this point

Here'e where the next worksheet is added:

#--create and open the second worksheet
$sheet = $book-Worksheets-Add;
$sheet-{Name} = Daily Message Volume By Queue;
$sheet-Columns-{ColumnWidth} = 24;

**When this worksheet is created the first worksheet goes back to being
named Sheet1

Any thoughts greatly appreciated.

Thanks in advance.


Dave Kazatsky
Senior Middleware Engineer
NSE - Solutions Engineering
W. (732) 893-4351
C. (973) 865-8106
The information contained in this message may be CONFIDENTIAL and is for the 
intended addressee only.  Any unauthorized use, dissemination of the 
information, or copying of this message is prohibited.  If you are not the 
intended addressee, please notify the sender immediately and delete this 
message.
___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


Re: Perl-Win32-Users Digest, Vol 13, Issue 5

2007-08-10 Thread m.srilakshmi lakshmi

Inline Example   Compile time 
use Inline C = ' int times2(int a) { return a * 2 } ';  print times2(8);  
Runtime 
sub make_multiplier {my($n) = @_;my $name =  times$n;my $code =  
 int ${name}(int a) { return a * $n; } ;Inline-bind(C = $code);  }
make_multiplier(42);  print times42(8);  
  



[EMAIL PROTECTED] wrote:  Send Perl-Win32-Users mailing list submissions to
perl-win32-users@listserv.ActiveState.com

To subscribe or unsubscribe via the World Wide Web, visit
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]

You can reach the person managing the list at
[EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than Re: Contents of Perl-Win32-Users digest...


Today's Topics:

1. hash table question (Mark Funk)
2. RE: hash table question
(Wagner, David --- Senior Programmer Analyst --- WGO)
3. RE: hash table question (Suresh Govindachar`)
4. Compilation of Inline::Ruby on win32 (Ed S. Peschko)
5. [SPAM?] Compilation of Inline::Ruby on win32 (Ed S. Peschko)
6. RE: a simple program (Steve Howard (PFE))


--

Message: 1
Date: Wed, 8 Aug 2007 17:58:57 -0400
From: Mark Funk 
Subject: hash table question
To: 

Message-ID:


Content-Type: text/plain; charset=us-ascii

What exactly does the following Perl code do?

%hash=();

open(PREVFILE, $prevfile) or die(Unable to open previous file);

while(
) {
chomp;
last if /BREAK/;
$seen{$_}++;
}
close(PREVFILE);

TIA,


David M. Funk 
President/CEO 
Tivoli Certified Enterprise Consultant 
Specializing in Network and Systems Management Solutions 
Trinity Solutions 
604 Cassandra Dr. 

Suite 204
Cranberry Twp., PA 16066 
Phone: 724-316-0721 
Fax: 724-772-7889 
email: [EMAIL PROTECTED] 




-- next part --
A non-text attachment was scrubbed...
Name: winmail.dat
Type: application/ms-tnef
Size: 3902 bytes
Desc: not available
Url : 
http://aspn.activestate.com/ASPN/Mail/Browse/Threaded/perl-win32-users/attachments/20070808/b00c106f/attachment.bin
 

--

Message: 2
Date: Wed, 8 Aug 2007 15:10:01 -0700
From: Wagner, David --- Senior Programmer Analyst --- WGO

Subject: RE: hash table question
To: Mark Funk ,


Message-ID:
[EMAIL PROTECTED]

Content-Type: text/plain; charset=us-ascii






From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Mark Funk
Sent: Wednesday, August 08, 2007 14:59
To: perl-win32-users@listserv.ActiveState.com
Subject: hash table question


What exactly does the following Perl code do?

%hash=(); 
This should be my %seen = (); 

open(PREVFILE, $prevfile) or die(Unable to open previous
file);

while(
) {
chomp;
last if /BREAK/;
$seen{$_}++;
}
close(PREVFILE);

TIA, 
removing the carriage return info as defined on your system
and counting all occurances of whatever it finds on the lines it reads.
If it finds the characters BREAK ( since it is done this way, it could
be anywhere on the line, BREAKDOWN or xxBREAK or BREAKnnn ), but will
not exist the processing if it sees break ( Must be capitalized to get
out early ). 

If this is all then you are not seeing the actual totals, but is
just placing in the hash keyed by whatever you are reading in.

Wags ;)


David M. Funk 
President/CEO 
Tivoli Certified Enterprise Consultant 
Specializing in Network and Systems Management Solutions 
Trinity Solutions 
604 Cassandra Dr. 

Suite 204
Cranberry Twp., PA 16066 
Phone: 724-316-0721 
Fax: 724-772-7889 
email: [EMAIL PROTECTED] 






**
This message contains information that is confidential and proprietary to FedEx 
Freight or its affiliates. It is intended only for the recipient named and for 
the express purpose(s) described therein. Any other use is prohibited.
**

-- next part --
An HTML attachment was scrubbed...
URL: 
http://aspn.activestate.com/ASPN/Mail/Browse/Threaded/perl-win32-users/attachments/20070808/9d5b4bae/attachment.html
 

--

Message: 3
Date: Wed, 8 Aug 2007 15:25:13 -0700
From: Suresh Govindachar` 
Subject: RE: hash table question
To: 'Mark Funk' ,


Message-ID:


Content-Type: text/plain; charset=us-ascii


Mark Funk asked:

 What exactly does the following Perl code do?
 
 %hash=();
 
 open(PREVFILE, $prevfile) or die(Unable to open previous file);
 
 while(
) {
 chomp;
 last if /BREAK/;
 $seen{$_}++;
 }
 close(PREVFILE);

Exactly, the code does nothing (since there is no output). I
suspect the intent is to count the number of times each line of
the file $prevfile occurs; but if $prevfile has a line which is
just BREAK then only lines above that line are considered
(otherwise all lines are considered).

--Suresh




RE: win32::ole (excel) question

2007-08-10 Thread dkazatsky

Hi Jan,

You're abolutely right - I forgot I had changed the name I was using to set
Sheet1.  I changed to a shorter length and it's running perfect.

Thanks much.

Dave Kazatsky
Senior Middleware Engineer
NSE - Solutions Engineering
W. (732) 893-4351
C. (973) 865-8106


   
 Jan Dubois  
 [EMAIL PROTECTED] 
 .com  To 
   [EMAIL PROTECTED],  
 08/10/2007 02:22  [EMAIL PROTECTED] 
 PMte.com  
cc 
   
   Subject 
   RE: win32::ole (excel) question 
   
   
   
   
   
   




The first sheet name is never changed from “Sheet1” to begin with because
you are trying to set it to a name with 37 characters. The maximum sheet
name length in Excel is 31 characters.

It would be nice if Excel returned an error if you try to assign an invalid
name, but it doesn’t appear to do so.

Cheers,
-Jan

From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: August 10, 2007 10:30 AM
To: perl-win32-users@listserv.ActiveState.com
Subject: win32::ole (excel) question



Hi all,

Weird situation with creating new worksheets and keeping the title in the
tab. I f I create just one everything is fine - when I add a second
worksheet to the workbook the title goes away from the original worksheet.

Code excerpt:

This is where the object is instanciated and the first worksheet is created
and named:

#--create and open the first worksheet
my $excel = Win32::OLE-new(Excel.Application);
$excel-{Visible} = 1;
my $book = $excel-Workbooks-Add;
my $sheet = $book-Worksheets(1);
$sheet-{Name} = Daily Message Volume By Queue Manager;

**cells are filled in and formatted - everything looks great to this point

Here'e where the next worksheet is added:

#--create and open the second worksheet
$sheet = $book-Worksheets-Add;
$sheet-{Name} = Daily Message Volume By Queue;
$sheet-Columns-{ColumnWidth} = 24;

**When this worksheet is created the first worksheet goes back to being
named Sheet1

Any thoughts greatly appreciated.

Thanks in advance.


Dave Kazatsky
Senior Middleware Engineer
NSE - Solutions Engineering
W. (732) 893-4351
C. (973) 865-8106
The information contained in this message may be CONFIDENTIAL and is for
the intended addressee only.  Any unauthorized use, dissemination of the
information, or copying of this message is prohibited.  If you are not the
intended addressee, please notify the sender immediately and delete this
message.
The information contained in this message may be CONFIDENTIAL and is for the 
intended addressee only.  Any unauthorized use, dissemination of the 
information, or copying of this message is prohibited.  If you are not the 
intended addressee, please notify the sender immediately and delete this 
message.
inline: graycol.gifinline: pic26421.gifinline: ecblank.gif___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


RE: win32::ole (excel) question

2007-08-10 Thread Jan Dubois
The first sheet name is never changed from Sheet1 to begin with because you 
are trying to set it to a name with 37 characters. The
maximum sheet name length in Excel is 31 characters.

 

It would be nice if Excel returned an error if you try to assign an invalid 
name, but it doesn't appear to do so.

 

Cheers,

-Jan

 

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: August 10, 2007 10:30 AM
To: perl-win32-users@listserv.ActiveState.com
Subject: win32::ole (excel) question

 

Hi all,

Weird situation with creating new worksheets and keeping the title in the tab. 
I f I create just one everything is fine - when I add
a second worksheet to the workbook the title goes away from the original 
worksheet.

Code excerpt:

This is where the object is instanciated and the first worksheet is created and 
named:

#--create and open the first worksheet
my $excel = Win32::OLE-new(Excel.Application);
$excel-{Visible} = 1;
my $book = $excel-Workbooks-Add;
my $sheet = $book-Worksheets(1);
$sheet-{Name} = Daily Message Volume By Queue Manager;

**cells are filled in and formatted - everything looks great to this point

Here'e where the next worksheet is added:

#--create and open the second worksheet
$sheet = $book-Worksheets-Add;
$sheet-{Name} = Daily Message Volume By Queue;
$sheet-Columns-{ColumnWidth} = 24;

**When this worksheet is created the first worksheet goes back to being named 
Sheet1

Any thoughts greatly appreciated.

Thanks in advance.


Dave Kazatsky
Senior Middleware Engineer
NSE - Solutions Engineering
W. (732) 893-4351
C. (973) 865-8106 

The information contained in this message may be CONFIDENTIAL and is for the 
intended addressee only.  Any unauthorized use,
dissemination of the information, or copying of this message is prohibited.  If 
you are not the intended addressee, please notify
the sender immediately and delete this message.
___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


Re: Perl-Win32-Users Digest, Vol 13, Issue 5

2007-08-10 Thread Sisyphus

- Original Message - 
From: m.srilakshmi lakshmi [EMAIL PROTECTED]
To: perl-win32-users@listserv.ActiveState.com

snipped the entire post as I could not understand it

Do you have a question ?

(Sorry ... it is not my intention to be smart or nasty, but I could not 
understand your post.)

Cheers,
Rob 

___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


Re: hash table question

2007-08-10 Thread Todd Beverly
Mark Funk wrote:
 What exactly does the following Perl code do?
  
 %hash=();

 open(PREVFILE, $prevfile) or die(Unable to open previous file);

 while(PREVFILE) {
   chomp;
   last if /BREAK/;
   $seen{$_}++;
 }
 close(PREVFILE);
  
   
At the end of the loop,  The %seen hash keys will have every unique line 
in $prevfile, up to a line that has 'BREAK' in it. The values of the 
hashes will contain the number of times that a line occurs.   One way to 
look for duplicate lines in a file.
___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


Orphaned modules (was: compiling Inline::Ruby on win32)

2007-08-10 Thread Ed S. Peschko
hmm..

So -- ruby uses 'native' signals on win32 and perl rolls it own? Is that the 
major issue?
Too bad.. it would be awfully nice to be able to 'borrow' any APIs that ruby 
folks 
write, and roll them up into CPAN.

Anyways, apparently HttpWatch has a generic COM interface (not a ruby-only) 
extension, 
so I was going to write perl around that, but I'm running into other issues. 


In particular, it looks like Win32::Setupsup and Win32::SAM are both sort of 
orphaned modules that are fairly essential to controlling internet explorer in 
a fine, granularized way (ie: firing up IE and populating both main windows and 
closing
popups), so I was hoping that I could get those working.


However, both don't seem to have ppms, and setupsup is not even listed on CPAN
(although after doing some grepping I see you can get it at 
(http://www.cpan.org/modules/by-module/Win32/setupsup.1.0.1.0.zip)

Does anyone have an idea whether these are going to make it to ppms for 5.8? 
I also see that setupsup in particular requires a SDK.  Is there a separate 
requirement that I need to compile this, or is visualc++ 6.0 sufficient?


Thanks,

Ed

On Fri, Aug 10, 2007 at 05:22:12PM +1000, Sisyphus wrote:
 
 - Original Message - 
 From: Ed S. Peschko [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Cc: Jan Dubois [EMAIL PROTECTED]; Eric Promislow 
 [EMAIL PROTECTED]; Gisle Aas [EMAIL PROTECTED]; 
 perl-win32-users@listserv.ActiveState.com; Todd Whiteman 
 [EMAIL PROTECTED]
 Sent: Thursday, August 09, 2007 4:15 PM
 Subject: [SPAM?] Compilation of Inline::Ruby on win32
 
 
 All,
 
 I'm trying to compile Inline::Ruby on win32, using visualc++ v6 and
 activestate perl, without too much luck, in trying to get HttpWatch
 to work with perl.
 
 In particular, I'm having difficulty with the headers.
 
 As it stands, signal.h and Win32 perl are incompatible. You can't #include 
 signal.h on Win32 when building perl extensions. And I think signal.h 
 gets pulled in as soon as you #include ruby.h.
 
 So it looks like an impasse to me - though, faik, it may be possible to 
 hack your way through it.
 
 ---
 C:\_32\pscrpt\inlinetype try.pl
 
 use warnings;
 
 use Inline C = 'EOC';
 
 #include signal.h
 
 void foo() {
 printf(Hello World\n);
 }
 
 EOC
 
 foo();
 
 C:\_32\pscrpt\inlineperl try.pl
 .
 snipped
 .
 In file included from try_pl_3fe7.xs:6:
 C:/_32/MinGW/bin/../lib/gcc/mingw32/3.4.5/../../../../include/signal.h:84: 
 error: syntax error before '(' token
 dmake:  Error code 129, while making 'try_pl_3fe7.o'
 .
 snipped
 .
 BEGIN failed--compilation aborted at try.pl line 12.
 
 ---
 
 I could find ppm's for many of the Inline::* modules, but not Inline::Ruby 
 - which also is not a good sign.
 
 Cheers,
 Rob 
 
___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


Orphaned modules (was: compiling Inline::Ruby on win32)

2007-08-10 Thread Ed S. Peschko
hmm..

So -- ruby uses 'native' signals on win32 and perl rolls it own? Is that the 
major issue?
Too bad.. it would be awfully nice to be able to 'borrow' any APIs that ruby 
folks 
write, and roll them up into CPAN.

Anyways, apparently HttpWatch has a generic COM interface (not a ruby-only) 
extension, 
so I was going to write perl around that, but I'm running into other issues. 


In particular, it looks like Win32::Setupsup and Win32::SAM are both sort of 
orphaned modules that are fairly essential to controlling internet explorer in 
a fine, granularized way (ie: firing up IE and populating both main windows and 
closing
popups), so I was hoping that I could get those working.


However, both don't seem to have ppms, and setupsup is not even listed on CPAN
(although after doing some grepping I see you can get it at 
(http://www.cpan.org/modules/by-module/Win32/setupsup.1.0.1.0.zip)

Does anyone have an idea whether these are going to make it to ppms for 5.8? 
I also see that setupsup in particular requires a SDK.  Is there a separate 
requirement that I need to compile this, or is visualc++ 6.0 sufficient?


Thanks,

Ed

On Fri, Aug 10, 2007 at 05:22:12PM +1000, Sisyphus wrote:
 
 - Original Message - 
 From: Ed S. Peschko [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Cc: Jan Dubois [EMAIL PROTECTED]; Eric Promislow 
 [EMAIL PROTECTED]; Gisle Aas [EMAIL PROTECTED]; 
 perl-win32-users@listserv.ActiveState.com; Todd Whiteman 
 [EMAIL PROTECTED]
 Sent: Thursday, August 09, 2007 4:15 PM
 Subject: [SPAM?] Compilation of Inline::Ruby on win32
 
 
 All,
 
 I'm trying to compile Inline::Ruby on win32, using visualc++ v6 and
 activestate perl, without too much luck, in trying to get HttpWatch
 to work with perl.
 
 In particular, I'm having difficulty with the headers.
 
 As it stands, signal.h and Win32 perl are incompatible. You can't #include 
 signal.h on Win32 when building perl extensions. And I think signal.h 
 gets pulled in as soon as you #include ruby.h.
 
 So it looks like an impasse to me - though, faik, it may be possible to 
 hack your way through it.
 
 ---
 C:\_32\pscrpt\inlinetype try.pl
 
 use warnings;
 
 use Inline C = 'EOC';
 
 #include signal.h
 
 void foo() {
 printf(Hello World\n);
 }
 
 EOC
 
 foo();
 
 C:\_32\pscrpt\inlineperl try.pl
 .
 snipped
 .
 In file included from try_pl_3fe7.xs:6:
 C:/_32/MinGW/bin/../lib/gcc/mingw32/3.4.5/../../../../include/signal.h:84: 
 error: syntax error before '(' token
 dmake:  Error code 129, while making 'try_pl_3fe7.o'
 .
 snipped
 .
 BEGIN failed--compilation aborted at try.pl line 12.
 
 ---
 
 I could find ppm's for many of the Inline::* modules, but not Inline::Ruby 
 - which also is not a good sign.
 
 Cheers,
 Rob 
 
___
ActivePerl mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


Re: hash table question

2007-08-10 Thread Lim Ee Wah
It counts the number of occurances of all lines in a file until a directive
BREAK.


a
v
b
a
a
BREAK
-

Then, $seen{a} = 3; $seen{v} = 1; $seen{b} = 1;


On 8/11/07, Todd Beverly [EMAIL PROTECTED] wrote:

 Mark Funk wrote:
  What exactly does the following Perl code do?
 
  %hash=();
 
  open(PREVFILE, $prevfile) or die(Unable to open previous file);
 
  while(PREVFILE) {
chomp;
last if /BREAK/;
$seen{$_}++;
  }
  close(PREVFILE);
 
 
 At the end of the loop,  The %seen hash keys will have every unique line
 in $prevfile, up to a line that has 'BREAK' in it. The values of the
 hashes will contain the number of times that a line occurs.   One way to
 look for duplicate lines in a file.
 ___
 Perl-Win32-Users mailing list
 Perl-Win32-Users@listserv.ActiveState.com
 To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


Re: Orphaned modules (was: compiling Inline::Ruby on win32)

2007-08-10 Thread Randy Kobes
On Fri, 10 Aug 2007, Ed S. Peschko wrote:

 In particular, it looks like Win32::Setupsup and Win32::SAM are both sort of
 orphaned modules that are fairly essential to controlling internet explorer in
 a fine, granularized way (ie: firing up IE and populating both main windows 
 and closing
 popups), so I was hoping that I could get those working.

 However, both don't seem to have ppms, and setupsup is not even listed on CPAN
 (although after doing some grepping I see you can get it at
 (http://www.cpan.org/modules/by-module/Win32/setupsup.1.0.1.0.zip)

There's a Win32-Setupsup ppm package available at
http://theoryx5.uwinnipeg.ca/ppms/

-- 
best regards,
Randy Kobes
___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


Re: Orphaned modules (was: compiling Inline::Ruby on win32)

2007-08-10 Thread Ed S. Peschko
On Fri, Aug 10, 2007 at 09:39:46PM -0500, Randy Kobes wrote:
 On Fri, 10 Aug 2007, Ed S. Peschko wrote:
 
 In particular, it looks like Win32::Setupsup and Win32::SAM are both sort 
 of
 orphaned modules that are fairly essential to controlling internet 
 explorer in
 a fine, granularized way (ie: firing up IE and populating both main 
 windows and closing
 popups), so I was hoping that I could get those working.
 
 However, both don't seem to have ppms, and setupsup is not even listed on 
 CPAN
 (although after doing some grepping I see you can get it at
 (http://www.cpan.org/modules/by-module/Win32/setupsup.1.0.1.0.zip)
 
 There's a Win32-Setupsup ppm package available at
http://theoryx5.uwinnipeg.ca/ppms/
 
 -- 
 best regards,
 Randy Kobes

Great - who maintains it? If they could possibly both get the changes to code
(to make it work) into CPAN so that you can actually search for it, and make it 
more standard (ie: if activestate could support it), it would be greatly 
appreciated..

hmm.. I see that Jens Helburg supports it.. so I'll send him a message.

Ed
___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


Re: Orphaned modules (was: compiling Inline::Ruby on win32)

2007-08-10 Thread Ed S. Peschko
On Fri, Aug 10, 2007 at 09:39:46PM -0500, Randy Kobes wrote:
 On Fri, 10 Aug 2007, Ed S. Peschko wrote:
 
 In particular, it looks like Win32::Setupsup and Win32::SAM are both sort 
 of
 orphaned modules that are fairly essential to controlling internet 
 explorer in
 a fine, granularized way (ie: firing up IE and populating both main 
 windows and closing
 popups), so I was hoping that I could get those working.
 
 However, both don't seem to have ppms, and setupsup is not even listed on 
 CPAN
 (although after doing some grepping I see you can get it at
 (http://www.cpan.org/modules/by-module/Win32/setupsup.1.0.1.0.zip)
 
 There's a Win32-Setupsup ppm package available at
http://theoryx5.uwinnipeg.ca/ppms/
 
 -- 
 best regards,
 Randy Kobes

Great - who maintains it? If they could possibly both get the changes to code
(to make it work) into CPAN so that you can actually search for it, and make it 
more standard (ie: if activestate could support it), it would be greatly 
appreciated..

hmm.. I see that Jens Helburg supports it.. so I'll send him a message.

Ed
___
ActivePerl mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


Re: Orphaned modules (was: compiling Inline::Ruby on win32)

2007-08-10 Thread Randy Kobes
On Fri, 10 Aug 2007, Ed S. Peschko wrote:

 In particular, it looks like Win32::Setupsup and Win32::SAM are both sort of
 orphaned modules that are fairly essential to controlling internet explorer in
 a fine, granularized way (ie: firing up IE and populating both main windows 
 and closing
 popups), so I was hoping that I could get those working.

 However, both don't seem to have ppms, and setupsup is not even listed on CPAN
 (although after doing some grepping I see you can get it at
 (http://www.cpan.org/modules/by-module/Win32/setupsup.1.0.1.0.zip)

There's a Win32-Setupsup ppm package available at
http://theoryx5.uwinnipeg.ca/ppms/

-- 
best regards,
Randy Kobes
___
ActivePerl mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs