[perl-win32-gui-users] How to refresh a window

2001-02-22 Thread A
Hi,
I have an application that uses Win32::GUI.
This program creates a window and writes, as it is running , some
information to this window. This  application runs for a quite long
time(about 20 minutes or longer).So far so good. A problem begins 
when a user switches from this program to another program and 
after some time
returns back to my program.The window created by my program is 
not
refreshed immediately to the state before switching but I must wait
until my program writes to that window. And because the window is 
not
refreshed quickly  it seems that the program does not run any 
longer.
What is  the best way how to refresh the window and show users 
that
the program is still running? Thank you for any good idea.

Ladislav




[perl-win32-gui-users] How to refresh a window

2001-03-31 Thread A
Hi,
I have an application that uses Win32::GUI.
This program creates a window and writes, as it is running , some
information to this window. This  application runs for a quite long
time(about 20 minutes or longer).So far so good. A problem begins 
when
a user switches from this program to another program and after 
some
time returns back to my program.The window created by my 
program is
not refreshed immediately to the state before switching but I must
wait until my program writes to that window. And because the 
window is
not refreshed quickly  it seems that the program does not run any
longer. What is  the best way how to refresh the window and show 
users
that the program is still running? Thank you for any good idea.

Ladislav


--- End of forwarded message ---



[perl-win32-gui-users] How to refresh a window

2001-04-04 Thread A
Hi,
I have an application that uses Win32::GUI.
This program creates a window and writes, as it is running , some
information to this window. This  application runs for a quite long
time(about 20 minutes or longer).So far so good. A problem begins 
when
a user switches from this program to another program and after 
some
time returns back to my program.The window created by my 
program is
not refreshed immediately to the state before switching but I must
wait until my program writes to that window. And because the 
window is
not refreshed quickly  it seems that the program does not run any
longer. What is  the best way how to refresh the window and show 
users
that the program is still running? Thank you for any good idea.

Ladislav






[perl-win32-gui-users] Most-Recently-Used files

2001-04-11 Thread A
Hi,
Does anybody have an idea how to implement a  Most-Recently-
Used files (last used files)?
It is mostly in File menu.
I mean similar to MS WORD, MS EXCEL, COREL and many other 
applications.
Thanks

Ladislav



--- End of forwarded message ---



[perl-win32-gui-users] DrWatson build 623 mod:558 W2k Pro

2001-05-08 Thread Bullock, Howard A.
I am attempting to use "Win32-GUI-PPM-5.6 0.0.558  January 31, 2001" from
 http://sourceforge.net/projects/perl-win32-gui on ActiveState Perl build
623.


In order to learn how to use it, I have attempted to execute a script found
on Jenda's site: http://jenda.krynicky.cz/perl/dbgrid.pl.txt.
 
The line shown below causes a fatal error and Perl closes.

$Status = new GUI::StatusBar($W,
-text => " ",
-width => $W->ScaleWidth,
);

Based on the DrWatson log,  strcpy seems to be problem function.

I remove the Win32-GUI listed above and reinstalled the package from
ActiveState's PPM repository. The script continues to generate the error.


Can anyone shed some light on this for me? Is this a known issue with this
this module version and build 623 or W2K?



Howard A. Bullock, MCSE
Global IT Infrastructure
Tyco Electronics

Voice: 717-810-3584




RE: [perl-win32-gui-users] DrWatson build 623 mod:558 W2k Pro

2001-05-08 Thread Bullock, Howard A.
Thanks for the help in understanding the issue. Now on to testing and
learning how use this module...

-Original Message-
From: Piske, Harald [mailto:[EMAIL PROTECTED]
Sent: Tuesday, May 08, 2001 11:48 AM
To: 'perl-win32-gui-users@lists.sourceforge.net'
Subject: RE: [perl-win32-gui-users] DrWatson build 623 mod:558 W2k Pro


I can confirm the behavior, but the real problem is a bug in the script, not
in GUI:
*EVERY* GUI object needs a unique name. Add -name => options to both the
statusbar and the progressbar below it and the script starts up.

| -Original Message-
| From: Bullock, Howard A. [mailto:[EMAIL PROTECTED]
[...]
| The line shown below causes a fatal error and Perl closes.
| 
| $Status = new GUI::StatusBar($W,
| -text => " ",
| -width => $W->ScaleWidth,
| );

___
Perl-Win32-GUI-Users mailing list
Perl-Win32-GUI-Users@lists.sourceforge.net
http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users



[perl-win32-gui-users] Displaying DB data

2001-05-09 Thread Bullock, Howard A.
Can some point to more documentation and/or sample scripts that display
multi-row and multi-column data than
http://jenda.krynicky.cz/perl/dbgrid.pl.txt as a sample; The grid does not
display for me. Instead I get small boxes with one or two characters in
each, 11 boxes per line.


I found Win32::GUI::GridLayout as part of the Win32::GUI package but can't
quite figure out what to do with it. The above script listed above is
supposed to provide a grid display using:

   $LV->InsertColumn(-index => 0,-width => 150, -text => "Row#");
   @Cols = $db->FieldNames();
   $lastcol=$#Cols;
   for($i=1;$i<=$lastcol;$i++) {
  $columname=$Cols[$i];
  $LV->InsertColumn(-index => $i, -width => 200, -text => $columname);
   }

Where does Win32::GUI::GridLayout fit into he picture? Any sample or
additional links would be appreciated.



[perl-win32-gui-users] win32-gui and perl2exe

2002-01-24 Thread Price, Steve A
Does anyone have any success creating free standing .exe files from
Win32::gui scripts using
either perl2exe?

I have downloaded the free Lite version of perl2exe and whilst I get some
functionality, I can't create child windows. The script works fine as a .pl,
so I assume its a problem with perl2exe... Don't want to waste hard earned
cash on the full version if the problem is not
just with the Lite version


Regards

Steve


Email Disclaimer

The information in this email is confidential and may be legally privileged.
It is intended solely for the addressee.  Access to this email by anyone else 
is unauthorised.
If you are not the intended recipient, any disclosure, copying, distribution 
or any action taken or omitted to be taken in reliance on it, is prohibited
and may be unlawful.  When addressed to our clients any opinions or advice
contained in this email are subject to the terms and conditions expressed in 
the governing KPMG client engagement letter.




RE: [perl-win32-gui-users] win32-gui and perl2exe

2002-01-24 Thread Price, Steve A
Thanks for the responses, I'll do a bit more playing around with my original
.pl and the Lite version to see if I can resolve the issue before I
register, but I'm glad to hear others are having success with this.

Regards

Steve

-Original Message-
From: Howard, Steven (US - Tulsa) [mailto:[EMAIL PROTECTED]
Sent: 24 January 2002 22:28
To: 'Price, Steve A'; perl-win32-gui-users@lists.sourceforge.net
Subject: RE: [perl-win32-gui-users] win32-gui and perl2exe


I use the PRO version of Perl2exe regularly with GUI. No problems. There is
also a -gui switch to get rid of the console window while it runs, but I
have to change how I log the execution if I use that switch. Normally I set
up logging like this:

open (logfile, ">$logfile") || die "Can't open $logfile: $!"

local *STDOUT = *logfile;
local *STDERR = *logfile;

# all STDOUT and STDERR messages now redirected to the logfile.

but when using the -gui switch - it will no longer log items. Not a real
problem, I just need to plan ahead and set up the logging accordingly if I'm
going to use Perl2exe using the -gui switch.

Steve H.

-Original Message-
From: Price, Steve A [mailto:[EMAIL PROTECTED]
Sent: Thursday, January 24, 2002 4:00 PM
To: perl-win32-gui-users@lists.sourceforge.net
Subject: [perl-win32-gui-users] win32-gui and perl2exe


Does anyone have any success creating free standing .exe files from
Win32::gui scripts using
either perl2exe?

I have downloaded the free Lite version of perl2exe and whilst I get some
functionality, I can't create child windows. The script works fine as a .pl,
so I assume its a problem with perl2exe... Don't want to waste hard earned
cash on the full version if the problem is not
just with the Lite version


Regards

Steve


Email Disclaimer

The information in this email is confidential and may be legally privileged.
It is intended solely for the addressee.  Access to this email by anyone
else 
is unauthorised.
If you are not the intended recipient, any disclosure, copying, distribution

or any action taken or omitted to be taken in reliance on it, is prohibited
and may be unlawful.  When addressed to our clients any opinions or advice
contained in this email are subject to the terms and conditions expressed in

the governing KPMG client engagement letter.


___
Perl-Win32-GUI-Users mailing list
Perl-Win32-GUI-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users
- This message (including any attachments) contains confidential information
intended for a specific individual and purpose, and is protected by law.  -
If you are not the intended recipient, you should delete this message and
are hereby notified that any disclosure, copying, or distribution of this
message, or the taking of any action based on it, is strictly prohibited.

___
Perl-Win32-GUI-Users mailing list
Perl-Win32-GUI-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users



RE: [perl-win32-gui-users] Win32-API version 0.20

2002-02-07 Thread Price, Steve A
Jeremy,

try here, follow the link for the .zip file, it contains a self extracting
archive of win32::api 0.2
http://www.generation.net/~aminer/Perl/

Regards

Steve

-Original Message-
From: Jeremy Blonde [mailto:[EMAIL PROTECTED]
Sent: 07 February 2002 06:29
To: Perl-Win32-GUI-Users
Subject: [perl-win32-gui-users] Win32-API version 0.20


Does anyone have Win32-API version 0.20 from Aldo's site?  Due to a recent
hard drive crash, I lost most of my archives.  I can't seem to get to his
site anymore to pull it down myself and I need it in order to use the
Hyperlink module.  If someone could send me the compiled version (the source
code still exists on cpan), I'd appreciate it.

Thanks,
Jeremy Blonde


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


___
Perl-Win32-GUI-Users mailing list
Perl-Win32-GUI-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users


Email Disclaimer

The information in this email is confidential and may be legally privileged.
It is intended solely for the addressee.  Access to this email by anyone else 
is unauthorised.
If you are not the intended recipient, any disclosure, copying, distribution 
or any action taken or omitted to be taken in reliance on it, is prohibited
and may be unlawful.  When addressed to our clients any opinions or advice
contained in this email are subject to the terms and conditions expressed in 
the governing KPMG client engagement letter.




[perl-win32-gui-users] HTML problem after install of Win32::GUI

2006-05-18 Thread Bullock, Howard A.
After installing Win32::GUI via ActiveStates PPM library, the HTML
documentation did not work. The hyperlinks all had extra data in them
making them invalid.  I had to change all the links in the HTML
documentation.

The link path were as follows:

file:///C:/Perl/html//TEMP/Win32-GUI-1-3632-1147953296/blib/html/site/li
b/Win32/GUI/UserGuide/Readme.html

The following text had to be removed from the path of all the links in
most of the GUI html files.

/TEMP/Win32-GUI-1-3632-1147953296/blib/html/




[perl-win32-gui-users] unsubscribe

2013-01-17 Thread Haley,Scott A
Thanks,
Scott Haley
IS Voice Projects Team
Edward Jones Investments
Phone: 314-515-2244
Email: scott.ha...@edwardjones.com<mailto:scott.ha...@edwardjones.com>
 
If you are not the intended recipient of this message (including attachments) 
or if you have received this message in error, immediately notify us and delete 
it as well as any attachments.

If you do not wish to receive any email messages from us, excluding 
administrative communications, please email this request to 
messa...@edwardjones.com along with the email address you wish to unsubscribe. 

For important additional information related to this email, visit 
www.edwardjones.com/US_email_disclosure. Edward D. Jones & Co., L.P. d/b/a 
Edward Jones, 12555 Manchester Road, St. Louis, MO 63131 C Edward Jones. All 
rights reserved.
--
Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and
much more. Get web development skills now with LearnDevNow -
350+ hours of step-by-step video tutorials by Microsoft MVPs and experts.
SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122812___
Perl-Win32-GUI-Users mailing list
Perl-Win32-GUI-Users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users
http://perl-win32-gui.sourceforge.net/

[perl-win32-gui-users] open(MIC, "

2002-12-18 Thread b r y a n

I realize this is a bit off topic, but maybe someone on this list knows.

I want to write a voice over IP application with Win32::Gui
The only problem is accessing the microphone under windows.

under UNIX-type operating systems is as easy as open(MIC, 
"

I reckon a very simple app can be made to open the mic and print to STDOUT, 
that way I can do something like open(MIC, "mic.exe|") or such.


After some initial research, it seems this is easy enough to accomplish with 
the Windows API although I am in no way familiar with windows programming.


I've also looked into MCI commands, which don't seem to far abstracted from 
the system to be able to pipe microphone data to STDOUT


_
Protect your PC - get McAfee.com VirusScan Online 
http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963