Re: Help with Win32::GUI

2012-09-07 Thread Jack
o. you can roll your own key checking 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

Help with Win32::GUI

2012-09-07 Thread Barry Brevik
x27;m 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', -widt

Re: gui debuggers?

2012-03-19 Thread Daniel Rawson
Jan - Fixed, thanks for your help. Probably not necessary, but . . . - removed PDK - removed Active Perl - Cleaned out a couple of left-over registry entries in CLSID for "PerlDB.exe" - Re-installed all - Re-installed my license - Re-started . . . and it's all working :-) Dan On 03/19/12 01:32

RE: gui debuggers?

2012-03-19 Thread Jan Dubois
On Mon, 19 Mar 2012, Daniel Rawson wrote: > Chris - > > That's what I was afraid of . . . .my 5.14.2 install is definitely > 64-bit, but the old PDK is from 2004, so it's certainly 32-bit :-( The 32-bit PDK debugger should still work with 64-bit Perl. They run in separate processes and just exchan

RE: gui debuggers?

2012-03-19 Thread Jan Dubois
y other ideas? > > Thanks! > > Dan > > On 03/19/12 12:55 PM, Jan Dubois wrote: > > Daniel, > > > > There is no GUI debugger included in ActivePerl (I think Mark > > may be mixing it up with the GUI interface to Perl::Critic, > > which was initially a

Re: gui debuggers?

2012-03-19 Thread Daniel Rawson
me=MSWin32, osvers=5.2, archname=MSWin32-x64-multi-thread == Dan On 03/19/12 01:21 PM, Christopher Taranto wrote: > Hi Daniel, > > I don't believe that there is a 64-bit PDK gui debugger which is what I > believe that you are trying to use. > > Chris

Re: gui debuggers?

2012-03-19 Thread Christopher Taranto
Hi Daniel, I don't believe that there is a 64-bit PDK gui debugger which is what I believe that you are trying to use. Chris On Mon, Mar 19, 2012 at 10:18 AM, Daniel Rawson wrote: > Jan - > > Thanks . . . I did finally get it to install, but it won't start by > default

Re: gui debuggers?

2012-03-19 Thread Daniel Rawson
ks! Dan On 03/19/12 12:55 PM, Jan Dubois wrote: > Daniel, > > There is no GUI debugger included in ActivePerl (I think Mark > may be mixing it up with the GUI interface to Perl::Critic, > which was initially added to the PDK, but has been moved to > ActivePerl since then). > &

RE: gui debuggers?

2012-03-19 Thread Jan Dubois
Daniel, There is no GUI debugger included in ActivePerl (I think Mark may be mixing it up with the GUI interface to Perl::Critic, which was initially added to the PDK, but has been moved to ActivePerl since then). However, the GUI debugger from your PDK should still work with the latest

RE: gui debuggers?

2012-03-19 Thread Puustinen Rainer
- From: perl-win32-users-boun...@listserv.activestate.com [mailto:perl-win32-users-boun...@listserv.activestate.com] On Behalf Of Daniel Rawson Sent: 19. maaliskuuta 2012 12:43 To: Mark Dootson Cc: perl-win32-users@listserv.ActiveState.com Subject: Re: gui debuggers? Mark - Thanks . . .

Re: gui debuggers?

2012-03-19 Thread Mark Dootson
Ooops On 19/03/2012 10:37, Mark Dootson wrote: > I think you'll find ActivePerl 5.14.2 comes with its own graphical > debugger. If it doesn't load by default with -d, you must have some > setting present that prevents this. I'm thinking I imagined this. Can't find a reference to it anywhere. Sor

Re: gui debuggers?

2012-03-19 Thread Daniel Rawson
esn't work with my company-provided install of 5.14.2. In addition, the >> Devel::ptkdb module is not available for 5.14. >> >> I've been using the regular command-line debugger, but I would love to find >> another GUI debugger. >> >> Suggestions?

Re: gui debuggers?

2012-03-19 Thread Mark Dootson
d ActivePerl 5.14.2 - I > had been using v5.8 + PDK v6 for years. Unfortunately, the old 32-bit PDK > doesn't work with my company-provided install of 5.14.2. In addition, the > Devel::ptkdb module is not available for 5.14. > > I've been using the regular command-line d

gui debuggers?

2012-03-19 Thread Daniel Rawson
27;ve been using the regular command-line debugger, but I would love to find another GUI debugger. Suggestions? Thanks Dan -- /* - * * Dan Rawson * ASML \_/* * daniel.raw...

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::

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

Re: Win32::GUI, WMI, and threads

2011-10-27 Thread Jonathan Epstein
I'd try putting all the Win32::OLE stuff into its own (single) thread, separate from the GUI thread. Some creative use of variables (and e.g. a Tk Progress bar) can allow you to provide a GUI which indicates how long you've been waiting for a WMI call to respond. HTH, Jonathan

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 n

RE: GUI based perl

2009-07-30 Thread Jan Dubois
On Thu, 30 Jul 2009, Serguei Trouchelle wrote: > I'd say Tkx because Tk is no longer developed. In case you haven't seen it, the TkDocs site has a tutorial that shows how to use the latest Tk bindings from Tcl, Ruby, Python and Perl, using the Tkx interface for the Perl code: http://www.tkdoc

Re: GUI based perl

2009-07-30 Thread Serguei Trouchelle
I'd say Tkx because Tk is no longer developed. Also, wxPerl (and Cava Packager) may be an interesting alternative to Tk*. mohammed.must...@wipro.com wrote: > Use perl *TK *utility. -- Serguei Trouchelle ___ Perl-Win32-Users mailing list Perl-Win32-Us

Re: GUI based perl

2009-07-29 Thread Angelos Karageorgiou
try activestate's guibuilder from http://spectcl.sourceforge.net. It has some issues but is mostly functional. vptk_w is another option but I consider guibuilder better! mohammed.must...@wipro.com wrote: Honestly speaking that takes sometime. But I don't have any idea about the tool which hel

RE: GUI based perl

2009-07-29 Thread mohammed.mustafa
stafa From: Kprasad [mailto:kpra...@aptaracorp.com] Sent: Thu 7/30/2009 11:30 AM To: Mohammed Mustafa (WT01 - PES-Semi-Technology); perl-win32-users@listserv.ActiveState.com Subject: Re: GUI based perl But it needs lot of coding to draw anything. Is there any utility where I can make

Re: GUI based perl

2009-07-29 Thread Kprasad
@listserv.ActiveState.com Sent: Thursday, July 30, 2009 11:01 AM Subject: RE: GUI based perl Use perl TK utility. Regards, Mustafa -- From: perl-win32-users-boun...@listserv.activestate.com on behalf of Kprasad Sent: Wed 7/29

RE: GUI based perl

2009-07-29 Thread mohammed.mustafa
Use perl TK utility. Regards, Mustafa From: perl-win32-users-boun...@listserv.activestate.com on behalf of Kprasad Sent: Wed 7/29/2009 9:22 PM To: perl-win32-users@listserv.ActiveState.com Subject: GUI based perl Hi Please suggest me that what should I use

GUI based perl

2009-07-29 Thread Kprasad
Hi Please suggest me that what should I use to create interactive GUI for running perl script. There may be button to Browse file and Run particular tool available with that interface. While script is running user can view the progress of that script and after completion of execution download

Gui builder

2008-04-06 Thread Edward Peschko
all, I found activestate's gui builder, which is very helpful btw, but I had a couple of questions: 1) Why did activestate stop integrating it in with komodo? It's probably the only component in komodo that I'd actually use heavily.. 2) Is there a group that maintains it? There

Re: Registerhotkey() Using Win32 API and GUI

2007-11-10 Thread Robert May
On 24/09/2007, Veli-Pekka Tätilä <[EMAIL PROTECTED]> wrote: > Robert May wrote: >>> Has anyone gotten the system wide RegisterHotkey and UnrEgister hotkey >>> Win32 functions working with Win32::GUI and Win32::API? >> See here: >> http://www.mail-arch

Re: Registerhotkey() Using Win32 API and GUI

2007-09-24 Thread Veli-Pekka Tätilä
Robert May wrote: > > Has anyone gotten the system wide RegisterHotkey and UnrEgister hotkey > > Win32 functions working with Win32::GUI and Win32::API? > See here: > http://www.mail-archive.com/[EMAIL PROTECTED]/msg05248.html Hey great, thanks for the link and code, it w

Re: Registerhotkey() Using Win32 API and GUI

2007-09-23 Thread Robert May
On 23/09/2007, Veli-Pekka Tätilä <[EMAIL PROTECTED]> wrote: > Hi, > Has anyone gotten the system wide RegisterHotkey and UnrEgister hotkey > Win32 functions working with Win32::GUI and Win32::API? See here: http://www.mail-archive.com/[EMAIL PROTECTED]/msg05248.html Regards,

Registerhotkey() Using Win32 API and GUI

2007-09-23 Thread Veli-Pekka Tätilä
Hi, Has anyone gotten the system wide RegisterHotkey and UnrEgister hotkey Win32 functions working with Win32::GUI and Win32::API? I just tried but my event handler never gets called. Any help as to why this is would be appreciated. I hope it's some quirk in my own code I just haven'

Re: PPM4 GUI and the Blind (Was: Beta of PPM version 4 released: Usability, Feature Suggestions)

2006-06-18 Thread Veli-Pekka Tätilä
Bernie Cosell wrote: is there really a need to make the GUI stuff blind-accessible if there's a command-line interface from which you can do everything? surprisingly as some blind folk might find it, there are some of us sighted folk who *prefer* command line/console interfaces to things

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 => "Splitte

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

FW: MY GUI gets blank

2005-10-06 Thread SolHai Haile
Any help? From: "SolHai Haile" <[EMAIL PROTECTED]> To: perl-win32-users@listserv.ActiveState.com Subject: MY GUI gets blank Date: Mon, 03 Oct 2005 10:51:29 -0700 I am new to perl/tk, but I am making a good progress. I wrote this script (perl/TK) to run a test on our applianc

MY GUI gets blank

2005-10-03 Thread SolHai Haile
cmd ('test_cmd'); The test might take from 10 to 25 minutes. During this time, or transtioning from one test to the other test, the GUI gets blank. Any help? I don't have this problem if the appliance is directely connected to Windows

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

2005-09-24 Thread Veli-Pekka Tätilä
epad does have them. KEybord usage is a bit patchy, too. In the 50 States example, the arrow keys, as well as, pg up/down and home/end don't move the selection in the list box. Neither is item searching by rapidly typing in one or more letters implemented. Enough gripes. It seems obvious t

Re: GTK2 Accessibility on Win32, Alternative GUi Libs?

2005-09-20 Thread jeff griffiths
s; an example of this could be seen in the Gui interfaces of our own PDK product. http://search.cpan.org/~gaas/Tkx-1.02/Tkx.pm cheers, JeffG Veli-Pekka Tätilä wrote: Hi list, The recent post about GTK on Win32 got me thinking of using that library in Perl applications intended for Win32. I'd

GTK2 Accessibility on Win32, Alternative GUi Libs?

2005-09-20 Thread Veli-Pekka Tätilä
Hi list, The recent post about GTK on Win32 got me thinking of using that library in Perl applications intended for Win32. I'd like to do a GUI in perl but such that it is accessible to WIndows screen reader programs. That's because I have to use one myself. While the Win32::GUI pa

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 w

Win32::GUI::Grid

2005-08-05 Thread Octavian Rasnita
Hi, I am trying to create a grid using Win32::GUI::Grid and I want that the cells to be visible if I use the arrow keys to scroll down the grid. I have tried: $Grid->EnsureCellVisible(10, 0); to make sure the first cell from the 10th row is visible, but it is not if the grid can show only

Re: [aswin32] Re: Need help with Perl GUI

2005-08-03 Thread Robert May
Jaime Teng wrote: Too bad win32::GUI does not have much documentations as well. Does anyone have a good win32::gui website or book even? What exists as formal documentation for Win32:GUI is available (as of yesterday) at http://perl-win32-gui.sourceforge.net/ We're actively worki

Re: Need help with Perl GUI

2005-08-03 Thread Octavian Rasnita
Hi, I have just tried Prima. It doesn't create very accessible interfaces for screen readers. However, I found that the grid control created by Prima is accessible, while I couldn't find such a control in Win32::GUI. Teddy - Original Message - From: <[EMAIL PROTECTE

RE: Need help with Perl GUI

2005-08-03 Thread h-taguchi
How about Prima? http://www.prima.eu.org/ About accessibility for screen readers. About easines to learn any other points. I'm interested in Perl & GUI. I didn't make GUI application in Perl, also I didn't use Prima. But for a future chance, I like to know more... Reg

Re: Need help with Perl GUI

2005-08-02 Thread Octavian Rasnita
Unfortunately, Tk doesn't use standard GUI libraries, so the programs created with it won't be accessible for screen readers used by the blind. On the other hand, the programs created with Win32::GUI are very accessible and those created with WX are pretty accessible also. Teddy

Re: Need help with Perl GUI

2005-08-02 Thread Suresh Govindachar
Jaime Teng asked on 03 Aug 2005 10:31:03: > Does anyone have a good win32::gui website or book even? See the very-recent anouncement below: | From: Robert May <[EMAIL PROTECTED]> | To: [EMAIL PROTECTED], | Date: Tue, 02 Aug 2005 22:35:15 +0100 | Subject: [perl-win32-gui-users]

Re: Need help with Perl GUI

2005-08-02 Thread Sisyphus
- Original Message - From: "Jaime Teng" > > Too bad win32::GUI does not have much documentations as well. > Does anyone have a good win32::gui website or book even? > The Win32::GUI source tarball has some handy stuff in the 'docs' and 'samples&#x

Re: Need help with Perl GUI

2005-08-02 Thread Jaime Teng
Hi, I am currently comparing Tk with Win32::GUI. Seeing that I'll be programming for Win32, protability (to unix/mac) is not needed. In just a short time (with win32::GUI) i was able to write simple windows already. albeit crude, at least it took me a lot less time than with Tk. Perlap

Re: Need help with Perl GUI

2005-08-02 Thread Hugh Loebner
having trouble understanding? > > I only know Perl Tk, but I do know that it is _extremely_ powerful. > There are a few counter intuitive (for me) constructs, but once you > catch on to the syntax things aren't too bad. I don't know if any of > the other GUI's ar

Re: Need help with Perl GUI

2005-08-02 Thread Hugh Loebner
e more powerful, but I have yet to find a GUI task that I want the computer to do that Tk can't accomplish. As far as speed is concerned, my applications are heavily into file access, which is what really eats up time. I don't think using Tk vs another GUI will make much difference in opera

RE: Need help with Perl GUI

2005-08-01 Thread Ulpiano, Jean-Philippe \(Jean-Philippe\)
Hi Jaime, I am using wxPerl. As a GUI builder I use visualWX http://visualwx.altervista.org/. But however, it is always better having some knowledge of how these GUIs API should be used (http://wxperl.sourceforge.net/documentation.html). Kind regards, Jean-Philippe -- Jean-Philippe Ulpiano

Need help with Perl GUI

2005-07-31 Thread Jaime Teng
Hi, I've been learning Perl Tk for the past few weeks and honestly, I find it very difficult to learn Tk. Secondly, according to a friend who had worked on Perl GUI before, "Tk run slower than most other Perl GUI". Seeing that I am having hard time learning Tk, I sure would like

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

2005-07-12 Thread Chris Rogers
EMAIL PROTECTED]> > To: > 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 5.6 on WinXP SP2. I can't seem to get &g

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

2005-07-11 Thread Sisyphus
- Original Message - From: "Chris Rogers" <[EMAIL PROTECTED]> To: 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 5.6 on WinXP

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 th

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 / 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

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

2005-07-07 Thread Chris Rogers
t; To: "Glenn Linderman" <[EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]>; > 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 > > followi

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]>; Sent: Thursday, July 07, 2005 6:34 AM Subject: Re: Win32::GUI::Label, Bitmaps, and Resizing > Thanks again. Aft

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

2005-07-06 Thread Chris Rogers
seisupx,$mouseisupy) = GetMouseXY(); print "MouseUp " . (join "," , ($mouseisupx,$mouseisupy)) . "\n"; } sub GetMouseXY { my ($x,$y) = $ChildWin->ScreenToClient(Win32::GUI::GetCursorPos); return ($x, $y); } On 7/6/05, Glenn Linderman <[EMAIL PROTECTED]>

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

2005-07-06 Thread Chris Rogers
Glenn Linderman <[EMAIL PROTECTED]> wrote: > [Questions about Win32::GUI might be found and responded to faster on > the perl-win32-gui-users list on sourceforge.net.] > > On approximately 7/5/2005 7:19 PM, came the following characters from > the keyboard of Chris Rogers: >

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

2005-07-05 Thread Sisyphus
- Original Message - From: "Chris Rogers" <[EMAIL PROTECTED]> To: 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 > t

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

2005-07-05 Thread Chris Rogers
y when 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. Plea

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 v

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:

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: http://some.com/CSS/lst.css&quo

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

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 La

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 > a

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 t

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), but the

Re: WIN32::GUI

2005-04-17 Thread Sisyphus
- Original Message - From: "Octavian Rasnita" <[EMAIL PROTECTED]> To: 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

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 are not. On the

gui activex control

2005-04-12 Thread mailware
hi all, what win32-api calls can i make in order to create a client-side activex gui control that can be embedded in an application or internet explorer, using perlctrl. I realize this cannot be done *just using* perlctrl code. What perl win32::api calls can be made to make it work, and in

RE: Perl/Tk GUI Builder

2005-03-29 Thread h-taguchi
Chris Wagner (B> Sent: Tuesday, March 29, 2005 9:00 PM (B> To: Perl-Win32-Users@listserv.ActiveState.com (B> Subject: Re: Perl/Tk GUI Builder (B> (B> Ohayo Taguchi-san. I don't know of a builder app but there (B> is a great deal (B> of information and examples

RE: Perl/Tk GUI Builder

2005-03-29 Thread Jan Dubois
On Mon, 28 Mar 2005, [EMAIL PROTECTED] wrote: > Does anyone know of a Perl/Tk GUI builder? I know it is asked before. > But I like to know if there is. Guido seems not be supported any more. Our "Komodo Professional" product includes a GUI builder that targets Perl/Tk among

Re: Perl/Tk GUI Builder

2005-03-29 Thread Chris Wagner
Ohayo Taguchi-san. I don't know of a builder app but there is a great deal of information and examples contained in the widget.bat demo that comes with Active Perl. It should show u how to make any basic Tk GUI. -- REMEMBER THE WORLD TRADE CENTER ---=< WTC 911 >=--

Perl/Tk GUI Builder

2005-03-28 Thread h-taguchi
Hello, (B (BDoes anyone know of a Perl/Tk GUI builder? (BI know it is asked before. (BBut I like to know if there is. (BGuido seems not be supported any more. (B (BAny mailing list for Perl/Tk? (B (BRegards, (BHirosi Taguti (B[EMAIL PROTECTED] (B

RE: Perl GUI Programming

2005-01-24 Thread gerhard . petrowitsch
To: Gerhard Petrowitsch/STN/SC/[EMAIL PROTECTED]

RE: Perl GUI Programming

2005-01-21 Thread Dirk Bremer
First of all, thanks for everyone's suggestions on Perl GUI extensions. I have decided to use Tk. And thanks especially to Gerhard for his pointers. Here is the test program that I am working on: #! C:/perl/bin/perl -w use diagnostics; use strict; use warnings; # Declare modules. use FindB

RE: Perl GUI Programming

2005-01-21 Thread Ken Cornetet
Dirk, one frequently overlooked option for a windows GUI is to drive IE via the Win32::OLE module. This works pretty well for simple applications. If you already know HTML fairly well, there's less of a learning curve than some of the other options. There are some examples (in VBScrip

RE: Perl GUI Programming

2005-01-21 Thread gerhard . petrowitsch
| | | | | |"Dirk Bremer" <[EMAIL PROTECTED]> | | |

RE: Perl GUI Programming

2005-01-21 Thread Michaud, Richard1
You can wrap each label & button into a frame and then pack the frames together. Regards, Rick Michaud -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dirk Bremer Sent: Friday, January 21, 2005 9:22 AM To: perl-win32-users Subject: RE: Perl

RE: Perl GUI Programming

2005-01-21 Thread Dirk Bremer
Let me pose a general Tk question as I'm having a bit of trouble understanding the placement of widgets. I would like the following layout: label button label button label button label button I have tried various settings of -anchor and -side and the best that I can come up with is: label button

RE: Perl GUI Programming

2005-01-21 Thread Dirk Bremer
Gerhard, Can you direct me to the location of the mailing list? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, January 20, 2005 06:02 To: Dirk Bremer Cc: perl-win32-users Subject: Re: Perl GUI Programming Hi Dirk, I don't know, why Tk

Re: GUI

2005-01-20 Thread gerhard . petrowitsch
| | To: | | cc: (bcc: Gerhard Petrowitsch/STN/SC/PHILIPS) | |

RE: GUI

2005-01-20 Thread Johan Lindstrom
At 20:13 2005-01-20, Adam R. Frielink wrote: He might be looking for something like 'The GUI Loft'. Possibly SpecPerl or guido as well. I think Guido and the Loft are found at SourceForge. The GUI Loft is at: http://www.bahnhof.se/~johanl/per

RE: GUI

2005-01-20 Thread Adam R. Frielink
> As far as I know, Win32::GUI fits that criteria. > > On approximately 1/20/2005 10:06 AM, came the following > characters from > the keyboard of Robert Suchocki: > > > > Is there a GUI interface for Perl scripting/programming > that can be > > us

GUI

2005-01-20 Thread Robert Suchocki
   Is there a GUI interface for Perl scripting/programming that can be used with Windows98SE?     ___ Perl-Win32-Users mailing list Perl-Win32-Users@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

RE: Perl GUI Programming

2005-01-20 Thread Erich Beyrent
Have you looked here? http://wxperl.sourceforge.net/documentation.html -Erich- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dirk Bremer Sent: Thursday, January 20, 2005 10:34 AM To: perl-win32-users Subject: RE: Perl GUI Programming wxPerl is

RE: Perl GUI Programming

2005-01-20 Thread Dirk Bremer
wxPerl is interesting but very little documentation can be found. I will require documentation from a complete beginner's viewpoint (for the GUI) as I have literally no GUI programming experience although am well-versed in Perl. -Original Message- From: David Kaufman [mailto:[

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

Re: Perl GUI Programming

2005-01-20 Thread gerhard . petrowitsch
bute a lot) and it's very easy to use. It's also cross platform, of course. And you can re-use a lot of knowledge should you ever need to develop a GUI for Tcl (which God may save you from ;-) Once you get over the initial hurdles (which you will face with every GUI package), you wo

Re: Perl GUI Programming

2005-01-20 Thread StoneBeat
You can try Prima (http://prima.eu.org) It works in Win32, Linux and Solaris and have a very very very nice GUI-builder. El Miércoles 19 Enero 2005 23:21, Dirk Bremer escribió: > I am ready to attempt some GUI programming in Perl. I have looked at > Win32::GUI and need more documentation

Re: Win32-GUI

2005-01-20 Thread StoneBeat
If you see Loft Homepage (http://www.bahnhof.se/~johanl/perl/Loft/) The oficial PPMs are in http://rocherl.club.fr/Win32GUI.html#WinGui. El Miércoles 19 Enero 2005 23:58, Charles Maier escribió: > What server has Win32:GUI as a PPM ??? > > TI

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

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 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

RE: Perl GUI Programming

2005-01-19 Thread Erich C. Beyrent
> I am ready to attempt some GUI programming in Perl. I have looked at > Win32::GUI and need more documentation for it than I can readily find. I > have looked at Tk and it looks a bit cumbersome. What are you > recommendations? wxPerl is the best way to go, in my opinion. Cr

Re: Perl GUI Programming

2005-01-19 Thread David Kaufman
Hi Dirk, Dirk Bremer <[EMAIL PROTECTED]> wrote: I am ready to attempt some GUI programming in Perl. I have looked at Win32::GUI and need more documentation for it than I can readily find. I have looked at Tk and it looks a bit cumbersome. What are you recommendations? I require something t

Win32-GUI

2005-01-19 Thread Charles Maier
What server has Win32:GUI as a PPM ??? TIA Chuck ___ Perl-Win32-Users mailing list Perl-Win32-Users@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

  1   2   3   >