RE: Perl Help - Addlabel

2007-08-25 Thread Jerry Kassebaum
I add this line: ; to my code, so that the user has to hit ENTER to 
continue or end the program. 

Or I just open a DOS so I can see everything. However, that means navigating to 
that directory, which is a hassle.

Actually, I'm hoping someone has a solution I like better, so I can use it too.

Subject: Perl Help - AddlabelDate: Fri, 24 Aug 2007 11:29:05 -0400From: [EMAIL 
PROTECTED]: perl-win32-users@listserv.ActiveState.com






Hi 
Everyone,
 
I am new to Perl and 
I am trying to figure this out.

The problem I am having is that as I am adding (AddLabel) labels onto the 
window unless I have a messagebox popup to stop the app and wait for user 
input, 
you won't see the Add Labels. I have a messagebox at the very end that will 
show 
them all, but I need to show them as the Perl script proceeds, basically like a 
status. What am I doing wrong?
 
Thanks for any help.
 
Tom

_
Recharge--play some free games. Win cool prizes too!
http://club.live.com/home.aspx?icid=CLUB_wlmailtextlink___
Perl-Win32-Users mailing list
Perl-Win32-Users@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs


Re: Perl Help - Addlabel

2007-08-25 Thread Lim Ee Wah
You can have a look on this module.
http://search.cpan.org/~lusol/Tk-ExecuteCommand-1.6/ExecuteCommand.pm

On 8/26/07, Jerry Kassebaum [EMAIL PROTECTED] wrote:

  I add this line: ; to my code, so that the user has to hit ENTER to
 continue or end the program.

 Or I just open a DOS so I can see everything. However, that means
 navigating to that directory, which is a hassle.

 Actually, I'm hoping someone has a solution I like better, so I can use it
 too.




  --
 Subject: Perl Help - Addlabel
 Date: Fri, 24 Aug 2007 11:29:05 -0400
 From: [EMAIL PROTECTED]
 To: perl-win32-users@listserv.ActiveState.com

 Hi Everyone,

 I am new to Perl and I am trying to figure this out.
 The problem I am having is that as I am adding (AddLabel) labels onto the
 window unless I have a messagebox popup to stop the app and wait for user
 input, you won't see the Add Labels. I have a messagebox at the very end
 that will show them all, but I need to show them as the Perl script
 proceeds, basically like a status. What am I doing wrong?

 Thanks for any help.

 Tom


 --
 Recharge--play some free games. Win cool prizes too! Play 
 It!http://club.live.com/home.aspx?icid=CLUB_wlmailtextlink

 ___
 Perl-Win32-Users mailing list
 Perl-Win32-Users@listserv.ActiveState.com
 To unsubscribe: 
 http://listserv.ActiveState.com/mailman/mysubshttp://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: perl58.dll: Perl_sv_2iv_flags (undefined reference)

2007-08-25 Thread sisyphus1

- Original Message - 
From: Suresh Govindachar [EMAIL PROTECTED]
To: perl-win32-users@listserv.ActiveState.com
Cc: 'Sisyphus' [EMAIL PROTECTED]; 'Jan Dubois'
[EMAIL PROTECTED]
Sent: Saturday, August 25, 2007 2:20 PM
Subject: RE: perl58.dll: Perl_sv_2iv_flags (undefined reference)




  Sisyphus suggested linking with C:/opt/perl/lib/CORE/perl58.lib
  (which does have the symbols in it) in the command that creates
  if_perl.o and/or in the command that builds gvim.exe (which is
  also the command that reports the missing references).

  But the build is supposed to use the library dynamically, rather
  than be statically linked.

But you will still have a dynamic build - perl58.lib is an import library
rather than a static library.

For dynamic builds using MSVC++ it is compulsory that you link to the import
library. MSVC++ doesn't accommodate linking directly to the dll.

For dynamic builds using MinGW (gcc), you generally have a choice - either
link directly to the dll or link to the import library.
In this instance, the dll (perl58.dll) has been built using MSVC++ and I
therefore wonder whether MinGW can link directly to it.

I would at least be trying to link to the import library (perl58.lib) in the
hope that it would solve the problem. (No guarantees :-)

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