Help with Win32::GUI

2012-09-07 Thread Barry Brevik
sorry that it is about 90 lines in length. Can anyone help? Thank you, Barry Brevik --- use strict; use warnings; use Win32; use Win32::GUI(); my $main = Win32::GUI::Window - new ( -name = 'Main', -title = 'Test v0.1', -width = 400, -height = 200 ); my

Re: Help with Win32::GUI

2012-09-07 Thread Jack
into these boxes. The revised code is below. I have bound Enter in the username to go to the password box. I have bound Enter in the password box to show the username and password in a label... ## use strict; use warnings; use Win32; use Win32::GUI(); use Win32

RE: Win32::GUI, minimize, and window resize

2011-12-16 Thread Ken Cornetet
For future googlers, the answer to the problem is get rid of the $mw-Show() call in the resize routine. Ken Cornetet 812.482.8499 To err is human - to moo, bovine. From: Ken Cornetet Sent: Thursday, December 15, 2011 10:02 AM To: perl-win32-users@listserv.activestate.com Subject: Win32::GUI

Win32::GUI, minimize, and window resize

2011-12-15 Thread Ken Cornetet
Here's an odd problem. I've written a win32::GUI application, but it will not maximize or minimize. When I try, I see the window sort of blink, and I can see that the resize sub has been called. If I comment out the Main_Resize sub, the program maximizes and minimizes as expected. Any ideas

Win32::GUI, WMI, and threads

2011-10-27 Thread Ken Cornetet
I am writing a Win32::GUI app to monitor a Citrix farm of servers and I've got things going pretty well. The problem is that I make a lot of WMI calls (via Win32::OLE) and they can take anywhere from a second to a couple of minutes to complete. This prevents the GUI code from doing its normal

Re: Win32::GUI, WMI, and threads

2011-10-27 Thread Jonathan Epstein
/2011 5:24 PM, Ken Cornetet wrote: I am writing a Win32::GUI app to monitor a Citrix farm of servers and I’ve got things going pretty well. The problem is that I make a lot of WMI calls (via Win32::OLE) and they can take anywhere from a second to a couple of minutes to complete. This prevents

Re: [aswin32] Win32::GUI: How do I use a splitter (window frames)

2006-02-07 Thread Robert May
I posted this example to the list not that long ago. I've since corrected it so that it doesn't leave ugly lines all over the place. Regards, Rob. #!perl -w use strict; use warnings; use Win32::GUI; my $mw = Win32::GUI::Window-new( -title = Splitter Test, -pos = [100,100

Win32::GUI: How do I use a splitter (window frames)

2006-02-02 Thread A. Pollock
I built a simple Win32::GUI application which connects to an Access database containing hierarchical records and builds a tree view out of them. Now I would like to extend the application so that clicking on a record in the tree in the right-hand pane will display the record details in a left hand

TK's Screen Reader and Keybord Accessibility, Win32::GUI Questions

2005-09-24 Thread Veli-Pekka Tätilä
is Win32::GUI at least as far as perl on Win32 systems is concerned. However, I'd like to design GUis comfortably without having to rely on font properties and do some guess work as to where a control will be layed out. In Java programming, I like Swing's layout manager abstraction but haven't seen

Win32::GUI::AxWindow - browser

2005-08-12 Thread Octavian Rasnita
Hi, I am trying to create a browser control using Win32::GUI::AxWindow and I don't know if it is possible to set some options for that browser. For example, I am thinking that there are some advanced settings in Control Panel/Internet Settings/Advanced tab that I would like to change in my

Re: Problems with Win32::GUI::Brush / Pen

2005-07-12 Thread Chris Rogers
: Tuesday, July 12, 2005 4:16 AM Subject: Problems with Win32::GUI::Brush / Pen I have been playing around with samples/BitmapScroll.pl from the Win32-GUI-1.0 source using perl 5.6 on WinXP SP2. I can't seem to get a Brush or Pen working for me. No matter what I do (so far

Problems with Win32::GUI::Brush / Pen

2005-07-11 Thread Chris Rogers
I have been playing around with samples/BitmapScroll.pl from the Win32-GUI-1.0 source using perl 5.6 on WinXP SP2. I can't seem to get a Brush or Pen working for me. No matter what I do (so far), the rectangle is drawn with the brush/pen I think I'm specifying. Here's a sample of my broken code

ANNOUNCE: Win32::GUI v1.02

2005-07-11 Thread Robert May
I am please to announce that v1.02 of Win32::GUI is available for download from SourceForge. Win32::GUI is a Perl extension allowing creation of native Win32 GUI applications. Project summary and download: http://sourceforge.net/projects/perl-win32-gui/ Release notes: http://sourceforge.net

Problems with Win32::GUI::Brush and PEN

2005-07-11 Thread Chris Rogers
I have been playing around with samples/BitmapScroll.pl from the Win32-GUI-1.0 source using perl 5.6 on WinXP SP2. I can't seem to get a Brush or Pen working for me. No matter what I do (so far), the rectangle is drawn with the brush/pen I think I'm specifying. The majority of this code

Re: Problems with Win32::GUI::Brush / Pen

2005-07-11 Thread Sisyphus
- Original Message - From: Chris Rogers [EMAIL PROTECTED] To: perl-win32-users@listserv.ActiveState.com Sent: Tuesday, July 12, 2005 4:16 AM Subject: Problems with Win32::GUI::Brush / Pen I have been playing around with samples/BitmapScroll.pl from the Win32-GUI-1.0 source using perl

Re: Win32::GUI::Label, Bitmaps, and Resizing

2005-07-07 Thread Chris Rogers
]; perl-win32-users@listserv.activestate.com Sent: Thursday, July 07, 2005 6:34 AM Subject: Re: Win32::GUI::Label, Bitmaps, and Resizing Thanks again. After a little more research, I came up with the following which I am still working on. I'll be using the GetTickCount so that I can

Re: Win32::GUI::Label, Bitmaps, and Resizing

2005-07-06 Thread Chris Rogers
($x, $y) = unpack('LL', $point); Now I just have to get the coordinates of the mainwindow,childwindow, and bitmap so I can make the mouse coordinates relative to the bitmap instead of the screen. Thanks again, Chris On 7/6/05, Glenn Linderman [EMAIL PROTECTED] wrote: [Questions about Win32::GUI

Re: Win32::GUI::Label, Bitmaps, and Resizing

2005-07-06 Thread Chris Rogers
,$mouseisupy)) . \n; } sub GetMouseXY { my ($x,$y) = $ChildWin-ScreenToClient(Win32::GUI::GetCursorPos); return ($x, $y); } On 7/6/05, Glenn Linderman [EMAIL PROTECTED] wrote: On approximately 7/6/2005 7:52 AM, came the following characters from the keyboard of Chris Rogers: Thanks

Re: Win32::GUI::Label, Bitmaps, and Resizing

2005-07-06 Thread Sisyphus
- Original Message - From: Chris Rogers [EMAIL PROTECTED] To: Glenn Linderman [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; perl-win32-users@listserv.activestate.com Sent: Thursday, July 07, 2005 6:34 AM Subject: Re: Win32::GUI::Label, Bitmaps, and Resizing Thanks again. After a little

Win32::GUI::Label, Bitmaps, and Resizing

2005-07-05 Thread Chris Rogers
Is there a way to keep a label from resizing itself and the bitmap? Here's the scenario: I want to use a label that is 400x400 to hold a bitmap whose dimensions are unknown and use scroll bars to move the image around if the image is larger than the label. The need here is to be able to display

Re: Win32::GUI::Label, Bitmaps, and Resizing

2005-07-05 Thread Chris Rogers
the user clicks a defined area, a new image or the inventory list can be displayed. It sounds like a simple task but I'm just not sure if there is a way to do this in Win32::GUI. I thought the label control would work but I'm not even sure that it responds to the Click event. Please feel free to tell

Re: Win32::GUI::Label, Bitmaps, and Resizing

2005-07-05 Thread Sisyphus
- Original Message - From: Chris Rogers [EMAIL PROTECTED] To: perl-win32-users@listserv.ActiveState.com Sent: Wednesday, July 06, 2005 12:19 PM Subject: Re: Win32::GUI::Label, Bitmaps, and Resizing UPDATE: The more I look at this problem, the more worried I get. I'll explain

Win32::GUI::AxWindow

2005-06-17 Thread Anton Ganeshalingam
Could someone please tell me why I can't get the following code to work. The javascript doesn't work when embeding html. Please help tks Anton use Win32::GUI; use Win32::GUI::AxWindow; # Main Window my $user = undef; my $html = undef; get_html(); my $font = Win32::GUI::Font-new

Win32::GUI::AxWindow

2005-06-13 Thread Anton Ganeshalingam
Hello to all, I'm trying to write a Win32::GUI::AxWindow application by opening a web page. But for some reason I'm not able to get my javascript work and also I couldn't load the following scripts loaded in my active x window: link rel=stylesheet type=text/css href=http

Win32::GUI::Grid question

2005-05-04 Thread Сергей Черниенко
Hello, all, I'm writing Win32 GUI application and using grid control. End users will have to fill cells of that grid with float, not integer numbers. I have some questions: 1) as I understood, if cell have type GVIT_NUMERIC it's impossible fill it with float

RE: Win32::GUI

2005-04-19 Thread Johan Lindstrom
At 23:35 2005-04-18, Peter Eisengrein wrote: $W-{dialogui} = 1; Is this correct? Actually it is $W-{-dialogui} = 1; Ehrm... Sorry about that :) /J -- --- -- -- -- - - -- - Johan LindströmSourcerer @ Boss Casinos johanl AT DarSerMan.com Latest

Re: WIN32::GUI

2005-04-18 Thread Johan Lindstrom
At 09:49 2005-04-17, Octavian Rasnita wrote: Does anyone know what Windows graphics library is used by Win32::GUI? The native Windows libraries. I have seen that all the programs which are using the standard Win32 graphics library are very accessible for the blind (for screen readers

Win32::GUI

2005-04-18 Thread Octavian Rasnita
Hi, I have tried: $W = new Win32::GUI::Window( -title= Win32::GUI::Button (and variants) test, -left = 100, -top = 100, -width= 360, -height = 260, -name = Window, ); $W-{dialogui} = 1; Is this correct? But the problem is that the interface

RE: Win32::GUI

2005-04-18 Thread Peter Eisengrein
$W-{dialogui} = 1; Is this correct? Actually it is $W-{-dialogui} = 1; But the problem is that the interface is still not accessible for a screen reader. No object from the form has the focus. If I pressed on a button using the mouse, it got the focus, but I was not able to

WIN32::GUI

2005-04-17 Thread Octavian Rasnita
Hi, Does anyone know what Windows graphics library is used by Win32::GUI? I have seen that all the programs which are using the standard Win32 graphics library are very accessible for the blind (for screen readers), but the programs which are created using Win32::GUI in perl

Re: WIN32::GUI

2005-04-17 Thread Sisyphus
- Original Message - From: Octavian Rasnita [EMAIL PROTECTED] To: Perl-Win32-Users@listserv.ActiveState.com Sent: Sunday, April 17, 2005 5:49 PM Subject: WIN32::GUI Hi, Does anyone know what Windows graphics library is used by Win32::GUI? I don't know. I do know that GUI.h lists

Re[2]: Win32-GUI

2005-01-20 Thread Сергей Черниенко
Charles, http://sourceforge.net/projects/perl-win32-gui -- , mailto:[EMAIL PROTECTED] ___ Perl-Win32-Users mailing list Perl-Win32-Users@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com

RE: Win32-GUI

2005-01-19 Thread Charles Maier
Thanks Lloyd.. However it appears that there is no package for Win32:GUI on that site. It also appears that that site is not maintained so well as I found a number of bad links on a few things I looked into. This problem is.. I do not understand how to install a CPAN module.. it is very

Re: Win32-GUI

2005-01-19 Thread Jeff Griffiths
Charles Maier wrote: Thanks Lloyd.. However it appears that there is no package for Win32:GUI on that site. It also appears that that site is not maintained so well as I found a number of bad links on a few things I looked into. This problem is.. I do not understand how to install a CPAN

Re: Win32-GUI

2005-01-19 Thread $Bill Luebkert
Charles Maier wrote: Thanks Lloyd.. However it appears that there is no package for Win32:GUI on that site. It also appears that that site is not maintained so well as I found a number of bad links on a few things I looked into. This problem is.. I do not understand how to install

Win32::GUI - windows not displaying?

2005-01-07 Thread Daniel Houlton
Hello I'm looking at adding a GUI to several of my Perl scripts. I've been trying to use Win32::GUI, but my windows will never display. I've tried several sample scripts I've found on the net and they won't work either. i.e., a simple Hello World test like this won't work for me (from http

RE: Win32::GUI - windows not displaying?

2005-01-07 Thread Daniel Houlton
the script from a DOS window it does. thanks --Dan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Daniel Houlton Sent: Friday, January 07, 2005 1:07 PM To: perl-win32-users@listserv.ActiveState.com Subject: Win32::GUI - windows not displaying? Hello I'm

RE: problems installing Win32::GUI

2004-12-15 Thread Allegakoen, Justin Devanandan
] Subject: problems installing Win32::GUI All, Tried using the ppm to install Win32::GUI. The ppm just gave me the following error: Error: No valid repositories: Error: 500 Can't connect to ppm.ActiveState.com:80 Assuming it's because I'm behind a firewall with a proxy server, but couldn't figure

RE: problems installing Win32::GUI

2004-12-15 Thread Allegakoen, Justin Devanandan
Win32::GUI You'll need to add Mr C's repository to your ppm:- ppm rep add http://dada.perl.it/PPM Then install as necessary Cheers -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lasher, Brian Sent: Thursday, December 16, 2004 7:13 AM To: [EMAIL

problems installing Win32::GUI

2004-12-15 Thread Lasher, Brian
All, Tried using the ppm to install Win32::GUI. The ppm just gave me the following error: Error: No valid repositories: Error: 500 Can't connect to ppm.ActiveState.com:80 Assuming it's because I'm behind a firewall with a proxy server, but couldn't figure out how to configure proxy server

RE: Need a perl Win32 GUI recommendation

2004-09-20 Thread sja
-From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Levner, David [JJCUS Non JJ]Sent: Monday, September 20, 2004 12:11 AMTo: '[EMAIL PROTECTED]'Subject: Need a perl Win32 GUI recommendation I'd like to write some GUI programs in perl for Win32 (I'm currently using perl 5.6.1

Need a perl Win32 GUI recommendation

2004-09-19 Thread Levner, David [JJCUS Non JJ]
Title: Need a perl Win32 GUI recommendation I'd like to write some GUI programs in perl for Win32 (I'm currently using perl 5.6.1). Porting to Unix/Linux is not a big concern for me. Could I get your recommendations please? Thanks! David Levner

Pull down menu re: Win32::GUI::Menu?

2004-06-16 Thread Lawrence F. Durfee
I am trying to create a pull down menu with multiple options to select. I believe it is done with Menu() and AddMenuItem(), but I can't find any documentation. Can anyone help? Thanks, LarryD ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To

Re: Pull down menu re: Win32::GUI::Menu?

2004-06-16 Thread ncaa-hoops
How about trying Perl/Tk??? $mw = MainWindow-new ; $mw-geometry( 1000x640+10+0 ) ; ##whatever size you want $mw-configure ( -menu = my $menubar = $mw-Menu ) ; my $file =$menubar-cascade ( -label = 'File' , -menuitems = file_menuitems ) ; my $edit =$menubar-cascade ( -label = 'Edit' ,

Win32::GUI Question

2004-03-12 Thread Dirk Bremer \(NISC\)
Someone recently posted a code example using Win32::GUI to browse for a folder, ala: $Dir = GUI::BrowseForFolder(-title = Win32::GUI::BrowseForFolder test); Is there a similar method to browse a folder for the files contained within and to allow the selection of multiple files, returning

RE: Win32::GUI Question

2004-03-12 Thread Beckett Richard-qswi266
: Win32::GUI Question Someone recently posted a code example using Win32::GUI to browse for a folder, ala: $Dir = GUI::BrowseForFolder(-title = Win32::GUI::BrowseForFolder test); Is there a similar method to browse a folder for the files contained within and to allow the selection

Re: Win32::GUI Question

2004-03-12 Thread Dirk Bremer \(NISC\)
- From: Grant Babb [EMAIL PROTECTED] To: Dirk Bremer (NISC) [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Friday, March 12, 2004 09:31 Subject: RE: Win32::GUI Question File::Find performs that task quickly and efficiently. You can copy the example from the POD and you are ready to go. -Original

RE: Win32::GUI Question

2004-03-12 Thread Grant Babb
: Win32::GUI Question Someone recently posted a code example using Win32::GUI to browse for a folder, ala: $Dir = GUI::BrowseForFolder(-title = Win32::GUI::BrowseForFolder test); Is there a similar method to browse a folder for the files contained within and to allow the selection of multiple

RE: Win32::GUI Question

2004-03-12 Thread Eric M. Hillman
According to the docs on CPAN, there's a -multiple option, but I can't get it to work. Let us know if you have any joy. I've never got that to work. There's a way to do it with Win32::FileOp, though... @file = Win32::FileOp::OpenDialog( -title = Select File(s) to

Main Background color win32::gui

2003-10-23 Thread David Liouville
Hello, I can't find howto change the main windows background color. -background property work fine for component but not for main window. Please help, thanks David Liouville1bis rue St Louis35000 RennesGSM : 06 70 20 71 53WEB : http://www.vraiment-pas.net

Win32::GUI crashing, burning.

2003-10-08 Thread Eric Hillman
Weird problem here... I've been trying to move to Win32::GUI from Tk, and I can't even get as far as Hello World without perl crashing with a Perl.exe generated errors and will be closed by Windows Dr. Watson popup. The error I'm getting happens when I try to add pretty much any widget

RE: Win32::GUI crashing, burning.

2003-10-08 Thread Tobias Hoellrich
Subject: Win32::GUI crashing, burning. Weird problem here... I've been trying to move to Win32::GUI from Tk, and I can't even get as far as Hello World without perl crashing with a Perl.exe generated errors and will be closed by Windows Dr. Watson popup. The error I'm getting happens when I

Re: Win32::GUI crashing, burning -- fixed!

2003-10-08 Thread Eric Hillman
Tobias Hoellrich wrote: Try naming all your gui-objects and it'll do wonders: $main-AddLabel(-text = $text, -name = foobar); HTH Tobias Yay! Thanks a million. ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe:

RE: Win32::GUI::Label

2003-09-10 Thread Eric Logeson
Johan, Your suggestion regarding the size being set properly was the problem. Thanks eric -Original Message- From: Johan Lindstrom [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 09, 2003 5:20 PM To: [EMAIL PROTECTED] Subject: Re: Win32::GUI::Label At 15:39 2003-09-09 -0400

RE: Win32::GUI Docs

2003-07-30 Thread LIBERCE D SbanStiSysDev
I don't know about anything like that, but if you find it I'll be interrested as well.. Cheers, David -Message d'origine- De : Vuillemot, Ward W [mailto:[EMAIL PROTECTED] Envoyé : mercredi 30 juillet 2003 01:05 À : Perl-Win32-Users (E-mail) Objet : Win32::GUI Docs All, Where

Win32::GUI Docs

2003-07-29 Thread Vuillemot, Ward W
All, Where is a definitive guide to all the Win32::GUI methods? I stumbled across BrowseForFolder...but I cannot find anywhere that tell me all that I can do. Or is there some MS docs I can refer to? Thanks in advance. Cheers, Ward ___ Perl-Win32

Win32::GUI support

2003-07-21 Thread Erik Shön
Hello, I have been seeking further help concerning the Win32::GUI package could not find any. No one did answer my question on this present nailing list nor could I reach Aldo Calpini through his web site and the latest version seems a little dated. Is there development still going

RE: Win32::GUI support

2003-07-21 Thread Rogers, John
Title: RE: Win32::GUI support Erik, Win32-GUI Project is not dead, project is on Sourceforge.net, it has been a while since a release though. There is a active mailing list at [EMAIL PROTECTED] Suggest you ask question there, JohnR -Original Message- From: Erik Shön [mailto

[Win32::GUI] How can I add links to a Richedit?

2003-03-31 Thread Burak Grsoy
I want to add html-like clickable hyperlinks inside a richedit. How can I do this with Win32::GUI? ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

RE: Win32::GUI - How can I add links to a Richedit control?

2003-03-31 Thread Burak Grsoy
Sorry for sending this one two times... There was an error in the mail server last weekend I think... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Burak Grsoy Sent: Sunday, March 30, 2003 8:23 PM To: Perl-Win32-Users Subject: Win32::GUI - How can I

RE: How to use help-icon on DialogBox in Win32::GUI?

2003-02-03 Thread Joseph Youngquist
use Win32::GUI; use Win32; Win32::MsgBox(This is a test, 0 | 64, This is the msgBox Title); ___ 0 - display only the OK button 1 - display OK and Cancel buttons 2 - display Abort, Retry, and Ignore buttons 3 - display Yes, No, and Cancel buttons 4 - display Yes

How to use help-icon on DialogBox in Win32::GUI?

2003-02-02 Thread
How to use help-icon on DialogBox in Win32:: GUI? Thank ___ Perl-Win32-Users mailing list [EMAIL PROTECTED] To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Win32-GUI - Manage Window Objects...?

2003-01-28 Thread Mark Sutfin
I'm just working thru the *guitutx* tutorials that come with the Win32::GUI distribution (0.0.502 on W2K with 5.6.1 633) 2 questions: 1. Are the *top* and *left* options used to determine the location of an object (label, button, listbox..) in a Window? 2. Is there an ?object? manager (something

Re: Win32-GUI - Manage Window Objects...?

2003-01-28 Thread Johan Lindstrom
At 08:40 2003-01-28 -0700, Mark Sutfin wrote: I'm just working thru the *guitutx* tutorials that come with the Win32::GUI distribution (0.0.502 on W2K with 5.6.1 633) That's a way old release of Win32::GUI. The 0.0.558, or 0.0.665 release are better. http://dada.perl.it/#gui I think

RE: Win32-GUI - Manage Window Objects...?

2003-01-28 Thread Mark Sutfin
On Tuesday, January 28, 2003 9:18 AM, Johan Lindstrom wrote At 08:40 2003-01-28 -0700, Mark Sutfin wrote: I'm just working thru the *guitutx* tutorials that come with the Win32::GUI distribution (0.0.502 on W2K with 5.6.1 633) That's a way old release of Win32::GUI. The 0.0.558, or 0.0.665

RE: Win32-GUI - Manage Window Objects...?

2003-01-28 Thread Mark Sutfin
Johan wrote: snip 2. Is there an ?object? manager (something like TK's geometry mgr), or is everyone else just able to do the pixel math in their head(s)? That's not how layout is done using Win32::GUI. The easiest way to avoid pixel math is The GUI Loft... http://www.bahnhof.se/~johanl/perl

RE: Win32-GUI - Manage Window Objects...?

2003-01-28 Thread Johan Lindstrom
At 14:22 2003-01-28 -0700, Mark Sutfin wrote: The easiest way to avoid pixel math is The GUI Loft... http://www.bahnhof.se/~johanl/perl/Loft/ Downloaded this as well... No properties showing as per docs (running tgl.exe 11/2002). FAQ indicates that my screen resolution must be low...? So It's

Mixing Tk and Win32 GUI ?

2002-11-28 Thread Thomas Drugeon
Is this possible to mix Tk and Win32 windows in a same project? (I tried once to have a win32 dialogue box to open over a Tk windows, but the tk windows did not redraw when I mouved the win32 box!!) In fact I would lik to use activeX controls, like providd with Win32::GUI::AxWindow, in my Tk

RE: Win32::GUI question

2002-11-20 Thread Peter Eisengrein
Title: RE: Win32::GUI question Try creating it as a window and add this option: -dialogui = 1, and see if that gives the functionality you're looking for. -Pete -Original Message- From: Hawley, Eric [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 19, 2002 16:18

Help about module Win32::Gui

2002-10-16 Thread Bruno FABLET
is there a good help about this module (Win32::GUI) ? Thx. ___ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! Yahoo! Mail : http://fr.mail.yahoo.com ___ Perl-Win32-Users mailing

Win32::GUI or FindBin under Windows 95?

2002-10-16 Thread Morbus Iff
Has anyone had any difficulty using Win32::GUI v0.665 under Windows 95? My current code base works perfectly under Windows 98 and up, but nothing seems to happen (double-click, hourglass for a second, no hourglass) under 95. I've yet to do adequate testing/debugging, but I know that the last

Re: Help about module Win32::Gui

2002-10-16 Thread (Aben) Roman Fordinál
Dobrý den, 16. október 2002, 11:27:29, napsal jste: BF is there a good help about this module (Win32::GUI) BF ? http://dada.perl.it/gui_docs/guipacks.html - very good :) -- S pozdravem, (Aben) [EMAIL PROTECTED] ___ Perl-Win32-Users mailing list

Re: Help about module Win32::Gui

2002-10-16 Thread Johan Lindstrom
At 11:27 2002-10-16 +0200, Bruno FABLET wrote: is there a good help about this module (Win32::GUI) Nope. But there are incomplete docs, sample files to look at, and a pretty responsive mailing list. /J -- --- -- -- -- -- - - - Johan Lindström

Adding a Timer in Win32::GUI

2002-10-08 Thread Hawley, Eric
Okay I have been attempting to add a timer to a message box and have been unsuccessful in being able to do so. I want to have it so that after the message box displays the user has 10 seconds to either click YES or NO with default as YES. If after 10 seconds the user has failed to make a

Re: Adding a Timer in Win32::GUI

2002-10-08 Thread Johan Lindstrom
10 seconds the user has failed to make a selection YES will be automatically choosen. can someone help me out with this. Down below is some code that I have from the script. I would be surprised it that compiled and ran. This does. #!/usr/bin/perl -w use strict; use Win32::GUI; my $winDummy

RE: Adding a Timer in Win32::GUI

2002-10-08 Thread Peter Eisengrein
Title: RE: Adding a Timer in Win32::GUI Assuming $choice is your message box, perhaps something like this would work? ### untested sub No_Click { $choice-Hide(); $Window-Timer-Kill(); ### do something else return 1; } sub Timer { if ($choice-IsVisible) { $choice-Hide

RE: Adding a Timer in Win32::GUI

2002-10-08 Thread Krummel, James C - PGGC-6
MUST reboot Windows so that this task may finish.\nReboot Windows now?, 10, Error, $vbCritical + $vbYesNo); print $Return; James Krummel -Original Message- From: Hawley, Eric [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] Subject: Adding a Timer in Win32::GUI Date: Tue, 8

Re: New to Win32::GUI

2002-10-04 Thread Johan Lindstrom
. And pretty counts for non-geeks, so in order to make Perl look good you need to make the GUI look good. That means Win32::GUI or wxPerl. so I have decided to byte the bullet and learn Win32:GUI. Good read: http://www.jeb.ca/faq/Win32-GUI-FAQ.html Subscribe to the Win32::GUI::Users mailing list: http

Removing icons from the systemtray when using Win32::GUI

2002-10-04 Thread Champ Echols
I have written a perl app using Tk and Win32::GUI. Win32::GUI is used solely to place an icon in the systemtray. All works as planed except for the bug in Win32::GUI that leaves the icon in the systemtray when the app is closed. The notes for Win32::GUI indicate that this is a bug

Re: Perl 5.6.1 Win32::GUI TheGUILoft

2002-08-14 Thread Johan Lindstrom
At 12:57 2002-08-14 -0600, Syl wrote: Perl 5.6.1 build 633, Win32::GUI and TheGUILoft generate Prototype Mismatch errors. For example Prototype mismatch: sub main::MB_ICONHAND vs () at C:/Perl/lib/Exporter.pm line 57. This was discussed on the TGL support mailing list: http://groups.yahoo.com

Re: Win32::Gui and Net::irc?

2002-01-30 Thread Trisha Adams
I received a reply from a person who also made a irc bot and he said that fork() only succeeded in crashing his program. I read somewhere that fork() isn't available in win32 perl nor does it work with win32::gui. From: Edward G. Orton [EMAIL PROTECTED] To: Trisha Adams [EMAIL PROTECTED

Re: Win32::Gui and Net::irc?

2002-01-30 Thread Glenn Linderman
Peter Guzis wrote: Attempts to fork with Win32::GUI have been unsuccessful for the most part. I found if I even use Win32::GUI before a fork, Perl will completely crash when the fork is invoked. The workaround I found is to require Win32::GUI after any such fork. I'm not sure

Re[2]: Win32::Gui and Net::irc?

2002-01-30 Thread Eugeniy Ogloblin
you may use fork() before any GUI creation. This not crash. TA I received a reply from a person who also made a irc bot and he said that TA fork() only succeeded in crashing his program. I read somewhere that fork() TA isn't available in win32 perl nor does it work with win32::gui. From

Re: Sending text to other windows with Win32::GUI

2002-01-24 Thread Johan Lindstrom
strict; use Win32::GUI; my $winMain = new Win32::GUI::Window( -left = 13, -top= 32, -width = 439, -height = 260, -name = winMain, -text = Autoscroller, ); $winMain-AddLabel( -text= lblTest

RE: Sending text to other windows with Win32::GUI

2002-01-24 Thread Scott Campbell
with Win32::GUI Scott Campbell wrote (on the Perl-Win32 list): Now this is running as a process. Does anyone know of a way for me to send text to this window, from another perl process? Heh! I tried this out and it actually works! :) Cool! Consider these files: #!/usr/local/bin/perl -w #File

Sending text to other windows with Win32::GUI

2002-01-23 Thread Scott Campbell
I have created a window with the following code: $window = new Win32::GUI::Window( -name = 'MY_Window', -text = 'TEST', -left = 2, -top = 2, -width = 400, -height = 400, ); $window-show

Re: Win32::GUI, msvcrt.dll Win98

2002-01-15 Thread Miguel E. Guajardo
Thank you Johan Rob, I did try that I no longer received the error. However now I get another error... win32::GUI::Windows=HASH(0x17ffa7c) is not exported by the Win32::GUI module I guess i need to try and get the most recent documentation from dada and see what's up... Thank you all

Win32::GUI, msvcrt.dll Win98

2002-01-14 Thread Miguel E. Guajardo
Good day again all, I have decided to add to my learning curve and try to learn to use Win32::GUI to create a windows interface to the script I have been writing. (Trying to make it easier and more familiar for the operators who are going to use it) After much research I decided to try

Re: Win32::GUI, msvcrt.dll Win98

2002-01-14 Thread Johan Lindstrom
Miguel wrote: Well I download via PPM Win32::GUI from activestates and started with the hello world tutorial . when it came to run the script, I immediately received... PERL caused an invalid page fault in module MSVCRT.DLL Check if all of your windows and controls have a -name property

Re: Win32::GUI, msvcrt.dll Win98

2002-01-14 Thread Miguel E. Guajardo
Johan, here is the code as from the Win32::GUI tutorial. #!usr/bin/perl use Win32::GUI; $main = Win32::GUI::Window-new( -name = 'Main', -width = 100, -height = 100, ); $main-AddLabel

Re: Win32::GUI, msvcrt.dll Win98

2002-01-14 Thread Sisyphus
- Original Message - From: Miguel E. Guajardo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Try (as Johan suggested) : $main-AddLabel( -name = 'anything', -text = Hello, world); This was unnecessary with earlier versions. Cheers, Rob

Re: Choose a DIRECTORY through win32 GUI

2002-01-12 Thread Johan Lindstrom
At 19:04 2002-01-12 +0100, [EMAIL PROTECTED] wrote: I would like to have a way to choose a directory (not a file, a directory !) through a nice win32 gui. Until here, I've been proposed : What you want is BrowseForFolder. Look it up in the help files or post again, possible to the Win32::GUI

Win32-GUI documentation

2002-01-12 Thread Vilius Gaidelis
I install Win32::GUI with VPM on Win2000: = Installing D:\Perl\site\lib\auto\Win32\GUI\GUI.bs Installing D:\Perl\site\lib\auto\Win32\GUI\GUI.dll Installing D:\Perl\site\lib\auto\Win32\GUI\GUI.exp Installing D:\Perl\site\lib\auto\Win32

Re: Win32-GUI documentation

2002-01-12 Thread Johan Lindstrom
At 00:46 2002-01-13 +0100, Vilius Gaidelis wrote: I can not find any documentation or tutorial about this module. Somebody knows where can I find it? Haha, didn't see that coming :) http://www.jeb.ca/faq/Win32-GUI-FAQ.html Also, make sure you download the source distribution as well

Re: Win32-GUI documentation

2002-01-12 Thread Vilius Gaidelis
Thank You. - Original Message - From: Johan Lindstrom [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, January 13, 2002 12:02 AM Subject: Re: Win32-GUI documentation At 00:46 2002-01-13 +0100, Vilius Gaidelis wrote: I can not find any documentation or tutorial about

Re: Win32-GUI documentation

2002-01-12 Thread Sisyphus
- Original Message - From: "Vilius Gaidelis" [EMAIL PROTECTED] I can not find any documentation or tutorial about this module. Somebody knows where can I find it? Vilius Gaidelis -- Hi Vilius, The source from cpan contains html documentation

Re: Win32-GUI documentation

2002-01-12 Thread Marcus
On 13.01.02 at 00:46 Vilius Gaidelis wrote: I install Win32::GUI with VPM on Win2000: I can not find any documentation or tutorial about this module. Somebody knows where can I find it? Goto Sourceforge. The documentation should be on the Win32::GUI homepage. Btw, the version at ActiveState

RE: Win32-Gui and picking a directory

2002-01-03 Thread Tillman, James
Hi All Is there anything within the Tk GUI that can be used to pick a Directory and Files within that Directory? Yes, try Tk::getOpenFile which uses the native Win32 file picker on Windows. There's also a directory picker called Tk::DirSelect which has a custom interface for picking

Re: Will write a Tutorial on Win32::GUI ...

2001-11-12 Thread Stephen Patterson
On Monday 12 November 2001 1:27 pm, Johannes Gamperl wrote: Hello all, i'm a german editor of webdevelopement. i' playing to write a documentation for the Win32::GUI and also a detailed tutorial for a planed Book to Perl Developement on Win32 and specialy for GUI Developement. My work

Re: Win32::Gui

2001-09-29 Thread Johan Lindstrom
T.Phan wrote: I just installed the Win32::Gui package and I like to know where can I find the documentation? Whoa! Blue text! Why, oh, why? Nevermind... The (very) FAQ regarding the Win32::GUI documentation: Look in the source distribution at SourceForge (download and look

  1   2   >