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
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
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::
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
On 10/27/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 pr
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
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
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
o me that the only accessible GUI library
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 Sw
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
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
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
- 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
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
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
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
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
- 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
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]>
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:
>
- 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
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
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
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:
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
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
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
> $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
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
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
- 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
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
Здравствуйте 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
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
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
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
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
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
. If I run
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:
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 lik
Justin Devanandan
Sent: Thursday, December 16, 2004 8:02 AM
To: [EMAIL PROTECTED]
Subject: RE: problems installing 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: [EMA
AIL PROTECTED]
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
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 co
ssage-From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Levner, David [JJCUS Non J&J]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'
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!
Da
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 =
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 unsu
ollowing characters from
the keyboard of Bennett Haselton:
I'm having trouble getting the broadcast of WM_SETTINGCHANGE to work.
The following function is what I call to do the WM_SETTINGCHANGE.
Sorry some of the line breaks are from pasting, but I think the logic
flow is still OK in the belo
the way a Combobox does.
I have read all of the documentation I can find with no help.
I am using perl v5.8.3 and Win32-GUI v0.0.558.
___
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
> 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) t
: 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 selectio
-
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
exampl
55
> To: [EMAIL PROTECTED]
> Subject: 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
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,
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
---
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: h
ay, October 08, 2003 4:56 PM
> To: Perl-Win32
> 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.ex
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
I am new to Win32::GUI but I have managed to write a functioning app except
for one part.
I have 2 sets of Radiobuttons the first has 2 buttons, the second has 3
buttons for a total of 5. Both groups are inside groupboxes and the
groupboxes are one above the other in my dialogbox.
The
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
>
>
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
A
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
___
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: Eri
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 on for this
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 Gürsoy
> Sent: Sunday, March 30, 2003 8:23 PM
> To: Perl-Win32-Users
>
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
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
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
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
Johan wrote:
>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 ma
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
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'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 (some
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
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, Nov
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
-- --- -- -- -- -- - - -
Jo
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-Win
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
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-W
s
to restart.\n\nNOTE: You 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 PROTECTE
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
as YES. If after 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;
us
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 selecti
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 and to
ry pretty. 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::U
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 mai
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.
Exporter::import('NULL', 'WIN31_CLASS', 'OWNER_SECURITY_INFORMATION'
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 w
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"
> af
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]>
>
ndows 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/pe
t14.pl
use strict;
use Win32::GUI;
my $winMain = new Win32::GUI::Window(
-left => 13,
-top=> 32,
-width => 439,
-height => 260,
-name => "winMain",
-text => "Autoscroller",
);
I have created a window with the following code:
$window = new Win32::GUI::Window(
-name
=> 'MY_Window',
-tex
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 wha
- 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
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,
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 windo
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
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 Ac
- 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
1 - 100 of 118 matches
Mail list logo