Try :
use Win32 ();
use Win32::GUI;
>From my understanding, both of these modules export some of the same constant
>names and this causes a conflict. "using" Win32 with an empy list stops it
>from importing anything. This "should" fix it.
Joe Frazier, Jr.
Technical Support Engineer
Peoplec
Joe Frazier, Jr
Technical Support Engineer
Peopleclick.com
800-841-2365
[EMAIL PROTECTED]
> -Original Message-
> From: Frazier, Joe Jr On Behalf Of Peopleclick Customer Support
> Sent: Friday, March 02, 2001 12:33 PM
> To: 'perl-win32-gui-users@lists.sourceforge.net
>>I have a combo box such as below. How do I get a scroll bar along the
>>left or right side. Is this functionality supported? If so, does the
>>same method work for List boxes. Part of the problem, is that I
mostly
>>copied these directly from the examples and don't know what the
various
>>sty
if ("LST" =~ /[qt|et1|et2|si|rlt]/i) means the same as
if ("LST" =~ /[qtet1et2sirlt|]/i); The pipe(|) character has no special
meaning INSIDED [bracketed] regex, so basically, this regex matches any
character in the list if it is anywhere in the string to be searched.
As max stated, putting () a
>perldoc -f exec
exec LIST
exec PROGRAM LIST
The `exec()' function executes a system command *AND
NEVER RETURNS* - use `system()' instead of `exec()' if
you want it to return. It fails and returns FALSE only
if the command does not exist *and* it is executed
I have version Perl build 523 and Win32::GUI version 0.0.434 and wish to
upgrade. I tried to download from :
http://prdownloads.sourceforge.net/perl-win32-gui/Win32-GUI-0.0.502-PPM-
5.005.zip and got a "Cannot find server or DNS Error"
Is this available via ppm and if so, what is the repository p
2-GUI.ppd
This will install the local file instead of trying to connect to an
online
repository.
I you have trouble downloading it (the prdownloads server of sourceforge
does seem to be somewhat unreliable), I can mail it to you. It's just
188k.
Have fun,
Harald
| -----Original Message-
Could someone give me the link for the GUIBuilder. I remember seeing it
serveral weeks ago, but because I did not have access to a 5.6 Perl, I
could not use it. Alternatly, is there a searchable archive for the
list on sourceforge?
> -Original Message-
> From: Morbus Iff [mailto:[EMAIL PROTECTED]
> Sent: Thursday, May 31, 2001 14:40
> To: perl-win32-gui-users@lists.sourceforge.net;
> 'perl-win32-gui-users@lists.sourceforge.net'
> Subject: Re: [perl-win32-gui-users] Window Size Controls & Miscellany
> ?'s
>
>
> >Is
mailto:[EMAIL PROTECTED]
> Sent: Thursday, May 31, 2001 16:15
> To: perl-win32-gui-users@lists.sourceforge.net;
> perl-win32-gui-users@lists.sourceforge.net
> Subject: RE: [perl-win32-gui-users] Window Size Controls & Miscellany
> ?'s
>
>
> >At 03:06 PM 5/31/01
Not sure how this would work otherwise, but I did this on may machine
and it worked.
`start iexplore.exe http://www.activestate.com`
use backticks to call the "start" command in the command shell, then
pass an explicite exe name followed by the arguments. I tried it
without the iexplore.exe an
Yea, I know, but I thought that DOS commands which were part of the
shell would not work in Perl since they are not true executables.
Perhaps I am thinking of older versions of Perl. It has been a LONG
time since I had to shell out to get something done...
Anyway, If you REALLY need to get th
> -Original Message-
> From: Forhan, Michael [mailto:[EMAIL PROTECTED]
> Sent: Thursday, May 31, 2001 14:29
> To: 'perl-win32-gui-users@lists.sourceforge.net'
> Subject: [perl-win32-gui-users] Window Size Controls & Miscellany ?'s
> Second, I was wondering if any further strides have bee
> -Original Message-
> From: Morbus Iff [mailto:[EMAIL PROTECTED]
> Sent: Friday, June 01, 2001 10:50
> To: perl-win32-gui-users@lists.sourceforge.net
> Subject: Re: [perl-win32-gui-users] Opening a *New* Browser Window?
>
>
> >>| Well, then you just take the best of both ... first, you
> -Original Message-
> From: Frazier, Joe Jr
> Sent: Friday, June 01, 2001 11:35
> To: 'perl-win32-gui-users@lists.sourceforge.net'
> Subject: RE: [perl-win32-gui-users] Opening a *New* Browser Window?
>
>
>
>
> > -Original Messa
one change
close $css;
system("notepad.exe $css");
}
Should be :
close OUT;
system("notepad.exe $css");
}
you HAVE to fl
Perl 5.6 has the latest version on Activestates PPM.
C:\>perl -v
This is perl, v5.6.1 built for MSWin32-x86-multi-thread
(with 1 registered patch, see perl -V for more detail)
Copyright 1987-2001, Larry Wall
Binary build 626 provided by ActiveState Tool Corp.
http://www.ActiveState.com
Built 0
ation="filepath\filename" Win32-GUI
>
> Apparently not. THanks for your help.
>
> > -Original Message-
> > From: Frazier, Joe Jr [mailto:[EMAIL PROTECTED]
> > Sent: Monday, June 04, 2001 10:53 AM
> > To: perl-win32-gui-users@lists.sourceforge.net
nstall via ppm from the zip file but always
> get "Could not
> >locate a PPD" error. Can someone send the syntax on how to do this? I
> >assumed it would be
> >
> >ppm install --location="filepath\filename" Win32-GUI
> >
> >Apparently n
That file is the source code and would have to be installed using the
following steps:
cd to the folder you unziped to:
perl makefile.pl
nmake
nmake test
nmake install
This assumes you have nmake. If not, you can get it from MS ftp. I
dont know exactly where it is now, but you could go to MS s
ROLL,
-tabstop => 1,
I have not worked with this module long enough, but that kind of sticks
out in my mind as being a bareword.
>
> $Window->Category->InsertItem("");
> foreach (@category)
> {
> chomp($_);
> $Window->Category->InsertItem(&q
Below is part of some code. I want to be able to change the Notify Icon
tip based on the status of the main window:
If window is visible, tip should be "Hide PCKeys", if not visible, tip
should be "Show PCKeys". Can this be done? I have tried several
different things and nothing has worked. I
$Window->NI->Change(-tip => "Show PCKeys");
> instead of
> $Window->NI->{-tip} = "Show PCKeys";
>
> Worth trying.
> Have fun,
> Harald
>
> > -Original Message-
> > From: Frazier, Joe Jr [mailto:[EMAIL PROTECTED]
>
Thanks Johan, but i am fairly new to GUI Dev. I have a little knowledge
of VB, and have been working in Perl for about 3 years, but none of it
has used core API calls directly. Also, I have never needed to use
pack/unpack before, so I am not sure of the intricate details.
Here is a sample, perh
> -Original Message-
> From: Morbus Iff [mailto:[EMAIL PROTECTED]
> Sent: Thursday, June 28, 2001 17:38
> To: [EMAIL PROTECTED]; [EMAIL PROTECTED];
> perl-win32-gui-users@lists.sourceforge.net
> Subject: [perl-win32-gui-users] RE: Opera and "Open Default Browser",
> Hard Crash?
>
>
> Thi
Is there a simple way to add a method to an object? Basically, what I
want to do is this:
$window->CenterOnScreen();
where $window is my Win32::GUI::Window object, and CenterOnScreen() is a
sub I created in another package( or in main for that matter)
so that the method call above would invoke
That was me. Last I heard, the only answer suggested was using
Win32::API and calling the call to create the icon with the updated
name. I tried to use the change method, but was not successful(Could
have been doing it wrong). Please let me know if you figure it out
and/or patch the source.
b
> >One more thing, the -resizable option, does this get rid of that
> >annoying double arrow around the edge of the window?
>
> It's basically the same as the difference between a Window
> and a DialogBox,
> I guess.
YEAAA i tried the -resizable => 0 option on the Win32::GUI::Window
objec
What is the value of WM_HELP?
<>
Thanks, I guess what I was looking for didnt pan out. Basically, I was
trying to find a way to use the helpbutton from Dialogboxes. I assumed
that using getmessage or peekmessage(inside a main window timer event)
would be able to get the message from the queue and then use the
returned x and y to
Is there a way to sort the data in a Listview control? I know there is
a ColumnClick event for each column and this is where you would do your
sort, but has anyone already created a function to do this? I would
assume you would have to load each row in to a data structure and use a
Schwartzian Tr
> >4. Does anyone know a way to change the cursor during long
> >operations. I'm just looking for an hourglass, nothing fancy.
>
> Don't know how, but it can be done. It's Win32::GUI stuff.
>
> Look in the docs, or ask on the win32-gui-users mailing list
> if you can't
> get it to work. And
> -Original Message-
> From: $Bill Luebkert [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, September 05, 2001 22:47
> To: Frazier, Joe Jr
> Cc: [EMAIL PROTECTED]
> Subject: Re: Schwartzian Transform?
>
>
> "Frazier, Joe Jr" wrote:
> >
use Win32::Lanman;
if(!Win32::Lanman::NetUseAdd({remote => "server\\share",
password => "xx",
username => "user.name",
domain => "domain",
Disregard, I sent to the wrong list!! Sorry.
> -Original Message-
> From: Frazier, Joe Jr
> Sent: Monday, September 10, 2001 16:48
> To: perl-win32-gui-users@lists.sourceforge.net
> Subject: Error in PerlSvc when trying to map a drive
>
>
>
>
> use Win3
The closest I could get(NOT embedded!!!):
use Win32::OLE;
use Win32::GUI;
my $win = new Win32::GUI::Window (
-name => "Window",
#-topmost => 1,
-left => 100,
-top=> 100,
-width => 550,
-height => 550,
#-maxsize => [550,550],
#-minsize => [205,228],
-tex
If you JUST want to get html content and only get the text part of it,
use LWP. You may also want to use HTML::Tree or HTML::Treebuilder or
the other various HTML::* modules if you need to format the text in a
richedit field or something. I have never used any of these, However,
I would assume H
Tested:
use Win32::FileOp;
my @filenames = Win32::FileOp::OpenDialog(
title => 'Test',
filters => [ 'Word Documents' => '*.rtf;*.doc', 'All' => '*.*'],
defaultfilter => 1,
dir => 'c:\\',
filename => ' ',
handle => 0,
options => OFN_ALLOWMULTISELECT | O
Given:
$menu = Win32::GUI::MakeMenu(
"&File" => "File",
" > E&xit" => "Exit",
"&Search" => "Search",
" > &Client ID" => "CID",
);
then this:
$menu->{CID}->Enabled(0);
disables the Client ID menu command and
$menu->{CID}->Enabled(1);
reenables it.
-Original Messa
2001 10:28 AM
To: ""Frazier; Frazier, Joe Jr;
perl-win32-gui-users@lists.sourceforge.net
Subject: RE: [perl-win32-gui-users] (no subject)
I can't find any documentation *at all* for Menu objects... all the docs
I
have say "TBA" when it comes to Menu's. I am surpri
What are the options for Combobox? I have two applications which use a
combobox. One created manually and one using GuiLoft. The one with
GuiLoft does an an Autofill, however, the one made manually does not.
Example:
$Window->AddCombobox(
-tabstop => 1,
-default =>1,
-sort =
ers@lists.sourceforge.net
Subject: Re: [perl-win32-gui-users] Combobox
At 15:52 2001-09-27 -0400, Frazier, Joe Jr wrote:
>What are the options for Combobox? I have two applications which use a
>combobox. One created manually and one using GuiLoft. The one with
>GuiLoft does an an Autofill
Frank, one thing to remember that is not in the current versions of some
docs and some samples programs. "ALL controls MUST have a -name
attribute" and this must be unique in the program (NOT just the window).
Hopefully, the next version to come out will correct these samples.
Try this:
use W
.
-Original Message-
From: Mark Wilkinson
Sent: Sun 9/30/2001 12:26 PM
To: Frazier, Joe Jr
Cc: perl-win32-gui-users@lists.sourceforge.net
Subject: Re: [perl-win32-gui-users] (no subject)
I can't find any
Or you could use Win32::OLE and open an instance of Excel directly and
add the values. Also, you could use the CPAN module:
Spreadsheet::WriteExcel to write the data to an excel spreadsheet.
As for reading the listview, you use the ItemInfo method on each "cell"
to get the data and then write t
>From GUI.xs, here is the definition:
# (@)METHOD:GetSaveFileName(%OPTIONS)
# Allowed %OPTIONS are:
# -owner => WINDOW
# [TBD]
# -title => STRING
# the title for the dialog
# -directory => STRING
# specifies the initial directory
# -file => STRIN
t;You cancelled.\n";
}
}
This will return the filename with the selected ext filter added. Take
care NOT to include more then one ext, cause it will always add the
first to the filename( kind of a no brainer).
> -----Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL P
Inline comments
> -Original Message-
> From: SSGT Steven Swenson [mailto:[EMAIL PROTECTED]
> Sent: Thursday, October 25, 2001 2:17 PM
> To: Perl-Win32-GUI-Users@lists.sourceforge.net
> Cc: [EMAIL PROTECTED]
> Subject: [perl-win32-gui-users] Problems with List Boxes
>
>
>
>
> I am tryi
Thanks Harald. I did some playing and found:
Combobox:
7 = Open Dropdownlist
8 = Close Dropdownlist
9 = Change
10 = Lost Focus( got focus does not seem to give a value)
My call to reset did not seem to throw an event( no change event, nor
did additem). I can assume that this means the events a
>From Gui.pm:
sub new {
shift;
my($k, $v);
my $flag = 0;
my $key = 0;
my %accels = @_;
while( ($k, $v) = each %accels) {
$flag = 0;
if($k =~ s/shift[-\+]//i){ $flag |= 0x0004; }
if($k =~ s/(ctrl|control)[-\+]//i) { $flag |= 0x000
> -Original Message-
> From: Aldo Calpini [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, February 20, 2002 4:13 AM
> To: Perl-Win32-GUI-Users
> Subject: [perl-win32-gui-users] damn!
>
>
> hello people!
>
> I'm really sorry about my unforgivable absence of the last months :-(
> just yester
> -Original Message-
> From: Ultimate Red Dragon [mailto:[EMAIL PROTECTED]
> Sent: Saturday, February 23, 2002 12:58 PM
> To: perl-win32-gui-users@lists.sourceforge.net
> Subject: [perl-win32-gui-users] (no subject)
>
>
> Has anyone written/know how it could easily be done, a
> WYSIWYG
> -Original Message-
> From: Aldo Calpini [mailto:[EMAIL PROTECTED]
> Sent: Thursday, February 28, 2002 5:02 AM
> To: Perl-Win32-GUI-Users
> Subject: [perl-win32-gui-users] Win32::GUI Release 0.0.665
>
>
> hello people,
>
> finally, an update! this release of Win32::GUI introduces
> ma
> -Original Message-
> From: Aldo Calpini [mailto:[EMAIL PROTECTED]
> Sent: Thursday, February 28, 2002 8:18 AM
> To: Frazier, Joe Jr; Perl-Win32-GUI-Users
> Subject: Re: [perl-win32-gui-users] Win32::GUI Release 0.0.665
>
>
> Frazier, Joe Jr wrote:
&g
If you are asking for what I think, you are out of luck. Text is just what it
says: Plain Text! If you want files which have some kind of formatting (font
size, font style, font color, bold, etc) the files must be generated in a
application which supports those things and saved as some type of
Well, for converting HTML to RTF, I believe Johan was meaning that you should
be using an HTML parser AND a RTF Generator to:
read HTML file watching for events
when an event happens check the event data such as what tag fired the event and
then pass that info along with the (tag) data off to th
> -Original Message-
> From: Laurent ROCHER [mailto:[EMAIL PROTECTED]
> Sent: Monday, March 25, 2002 5:54 PM
> To: perl-win32-gui-users@lists.sourceforge.net
> Subject: Re: [perl-win32-gui-users] Add ActiveX Hosting to Win32::GUI
>
>
> Hello,
>
> I have put a new release with some i
Change
my $void = $win->DoEvents();
to :
Win32::GUI::DoEvents();
This is a class method, not an instance method. Also, this is just a straight
method call, no arguments or assignment back to a variable is needed. I can
ONLY assume that the problem is that the DoEvents method is looking f
Here is what I use. I have "global" vars called $dir and $sortCol. $dir
contains the current direction (asc or desc), while $sortCol contains the last
sorted column. Using both, I then either reverse the sort is the column is the
same as the current sorted column, or apply a asc sort if it is
Laurent Rocher created Win32::GUI::AxWindow and I am trying to get it to work
with MSFlexgrid. I am trying to get around some of the limitations(background,
font size, highlight single cells) of the Listview control that is standard in
Windows Forms. However, I am having trouble with some prop
I have been unable to get any events working with this control. Any thoughts?
use Win32::GUI;
my $Window = new Win32::GUI::Window (
-name => "Window",
-topmost => 1,
-left => 300,
-dialogui => 1,
-top=> 400,
-width => 222,
-height
Dude, Those ROCK Thanks for taking the time to play with and come up with
these. Maybe they will get into the next version. Keep sending new ones when
you find them.
Joe Frazier, Jr.
Technical Support Engineer
Peopleclick Service Support
Tel: +1-800-841-2365
E-Mail: mailto:[EMAI
What happens if you try to call a API that does not exist? Does Win32::API
trap the error or do you get an exception? In any event, you could have a
config page/menu/window with this setting disabled(non updateable) and turned
off by default, then verify the OS version is x or higher (using
W
> my $AnimateWindow = new Win32::API("user32", "AnimateWindow",
> [ 'N', 'N',
> 'N' ], 'N') or $reg{'UI'}{'Fading'} = 0;
>
> So taking that into account when doing stuff is easy. There
> even is no need
> for a special var, $AnimateWindow itself can be used, like so:
>
> if($AnimateWindow) {
Per the docs, DblClick event is not available on the NotifyIcon. However, you
can:
sub NI_MouseEvent
{
my $a = shift;
my %events = (
512 => 'Mouse Move',
514 => 'Left Click',
515 => 'Left DoubleClick',
517 => 'Right
More Ditto's.
Joe Frazier, Jr.
Technical Support Engineer
Peopleclick Service Support
Tel: +1-800-841-2365
E-Mail: mailto:[EMAIL PROTECTED]
-Original Message-
From: NAHUM Marc [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 23, 2002 12:28 PM
To: perl-win32-gui-users@lists.sour
I would expect you could just set up a timer event and repaint every x seconds
(maybe every .5 seconds?). I have never played with the control, so I dont
know for sure, but this may work for you. If you don't mind, you may want to
stop the timer when the control is not active and start again w
They can be moved. I use GUILoft and there is a property for that, however, I
dont know what it is.
You can drag the column header edges until it overlaps another and this "hides"
the specific column.
Joe Frazier, Jr.
Technical Support Engineer
Peopleclick Service Support
Tel: +1-800-841-2
Off topic for this list, but I would suggest investing in the PDK and using
perlservice once you have found a way to interface with the com port.
Alternativly, you could break it into two parts, with one part doing the
reading and writing to the log file and the other part just checking the tim
>my $ni = $Window->AddNotifyIcon(
> -name => "NI",
> -id => 1,
> -icon => $icon,
> -tip => "Scheduler Status Unknown"
>);
>
> $tip =
> '333634';
> print length $tip;
>
I do not know about the character limit, however, when I fir
I don't really need it at this time, but you may want to look into
http://aspn.activestate.com/ASPN/Mail/Message/pdk/1498261 for those users who
are trying to use Win32::GUI with an embeded perl somewhere
Joe
Laurent, have you made an example using this control? I have tried, and while
I can get the grid to show on the window(and can correctly change the
boderstyle property and it shows in the window), I am unable to get any cells
to populate the grid. I checked the grid properties after adding row
While I have not tested, the use of "eval" should work if you play with it
enough. I perform something simular with building a list of menu items based
off a "grepped" list of unique server names from a Database query. These are
inserted into the Menu at runtime so if a new servername is added
This is "ussually" caused by the use of both lines :
use Win32;
use Win32::GUI;
Both of these files export the same contacts (this is one of the reasons the
perlmodlib specifically state that exporting things automatically is generally
a bad practice.) . If you have use Win32 in your script,
> On the top of my wish list is:
> - true modal dialogs
> - working accelerators
> - (more) complete event support
> - drag-n-drop support (please apply my patch)
>
>
> /J
My wants:
1) see above
2) incoporate (with owners consent and proper, consistent documentation)
subclasses from Laurent a
I personally would prefer an online version in addition to the computer
installed docs. Especially if there were a way to download the entire doc in
addition to reading online. This would facilitate rapid updates of "example
code" in case an example is proven to be faulty or as new ways to use
> -Original Message-
> From: Glenn Linderman [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, June 24, 2003 10:07 PM
> To: Win32 GUI
> Subject: [perl-win32-gui-users] no taskbar entry for a Win32::GUI
> program
>
>
> From time to time the question has been asked on this list
> about how to
>
mailto:[EMAIL PROTECTED]
> Sent: Wednesday, June 25, 2003 3:48 PM
> To: Frazier, Joe Jr; Win32 GUI
> Subject: Re: [perl-win32-gui-users] no taskbar entry for a Win32::GUI
> program
>
>
> On approximately 6/25/2003 10:39 AM, came the following
> characters from
>
layed with the various settings for
-minimizebox, etc. It does look kind of cool with the small button, but I
would just like to know why
Joe Frazier, Jr.
Technical Support Engineer
Peopleclick Service Support
Tel: +1-800-841-2365
E-Mail: mailto:[EMAIL PROTECTED]
> -Original Message-
Jeremy, try this. It works on my machine (Win2k, AP 626). Just mouse over the
button and the tip should should up in a few seconds. BTW, I have been able to
dynamically change tip's within a systray menu, but have not tried on a
standard control (button, etc).
use Win32::GUI;
my $Window = n
> -Original Message-
> From: Dennis Putnam [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, July 16, 2003 8:05 AM
> To: perl-win32-gui-users@lists.sourceforge.net
> Subject: [perl-win32-gui-users] Novice question about
> accessing AddLabel
> properties
>
>
>
> -BEGIN PGP SIGNED MESSAGE-
> -Original Message-
> From: Dennis Putnam [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, July 16, 2003 9:06 AM
> To: perl-win32-gui-users@lists.sourceforge.net
> Subject: [perl-win32-gui-users] Another novice question - font for
> AddTextfiled -prompt property
>
>
>
> -BEGIN PGP SIGNE
> -Original Message-
> From: Dennis Putnam [mailto:[EMAIL PROTECTED]
> Sent: Sunday, July 20, 2003 10:00 AM
> To: perl-win32-gui-users@lists.sourceforge.net
> Subject: RE: [perl-win32-gui-users] Click subroutine doesn't
> get control
> when script is executing
>
>
>
> -BEGIN PGP SIG
> -Original Message-
> From: Roelof Bos [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, October 14, 2003 6:49 AM
> To: perl-win32-gui-users@lists.sourceforge.net
> Subject: [perl-win32-gui-users] RE: ListView Item Color
>
>
> > My next question would be, does anyone know how I can set it so
>
> -Original Message-
> From: Jeremy White [mailto:[EMAIL PROTECTED]
> Sent: Friday, November 14, 2003 3:54 AM
> To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
> Cc: perl-win32-gui-users@lists.sourceforge.net
> Subject: Re: [perl-win32-gui-users] accelerator keys - now working
> There were a co
> -Original Message-
> From: Jeremy White [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, December 23, 2003 3:59 PM
> To: [EMAIL PROTECTED];
> perl-win32-gui-users@lists.sourceforge.net
> Subject: Re: [perl-win32-gui-users] Progress bar's [coloring]
>
>
> >From: Jonathan Southwick <[EMAIL PRO
Steve, can you demonstrate the use of this and what this is for, because I am
not quite following the whole thread. Is this a way to get controls to fire
event handlers which were previously not available for that control?
Joe Frazier, Jr.
Technical Support Engineer
Peopleclick Service Suppor
Are you using some brand of Windows for running this example? The reason I ask
is I note the freebsd string in your @INC so I am assuming you are running this
on a "IBM" compatible machine with freebsd installed rather than Windows.
This module will only work on a windows based OS. If you
Ditto to many of Jez's comments. I would be personally very much love to have
a monthly build make it to PPM form. To my understanding, there is really not
that much to making a PPM file once the build is put together, so why not.
However, one of the biggest concerns is not with the coding a
> -Original Message-
> From: Stephen Pick [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, January 13, 2004 10:21 AM
> To: Jez White; perl-win32-gui-users@lists.sourceforge.net
> Subject: RE: [perl-win32-gui-users] Intermediate release of Win32::GUI
> Use $progressbar->Change( -foreground =>
> -Original Message-
> From: Stephen Pick [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, January 13, 2004 11:17 AM
> To: Frazier, Joe Jr; perl-win32-gui-users@lists.sourceforge.net
> Subject: RE: [perl-win32-gui-users] Intermediate release of Win32::GUI
>
>
> Hi
H.. This :
use Win32::GUI;
use Win32::API;
my $Window = new Win32::GUI::Window (
-name => "Window", -topmost => 1, -left => 300, -dialogui => 1, -top
=> 400, -width => 222, -addstyle => WS_VSCROLL, -height => 100, -text =>
"Test",
-events =>
{
Terminate => sub { print "Dyi
One more note. I am still using .665. About to upgrade.
Joe Frazier, Jr.
Technical Support Engineer
Peopleclick Service Support
Tel: +1-800-841-2365
E-Mail: mailto:[EMAIL PROTECTED]
-Original Message-
From: Frazier, Joe Jr
Sent: Tuesday, January 13, 2004 3:39 PM
To: Jez White
This is SOOO cool:
#!perl -w
use Win32::GUI;
use strict;
use warnings;
my $W = new GUI::Window(
-title=> "Win32::GUI::Rebar test",
-left => 100,
-top => 100,
-width=> 300,
-height => 200,
-name => "Window",
-events =>{
Terminate => sub
:[EMAIL PROTECTED]
-Original Message-
From: Jez White [mailto:[EMAIL PROTECTED]
Sent: Wednesday, January 14, 2004 5:00 AM
To: Frazier, Joe Jr; Peter Eisengrein; Win32-GUI
Subject: Re: [perl-win32-gui-users] The rebar control
Nice.
Had a little play - is there a way to add more than one
I just upgraded both Win32::GUI and TGL. I just noticed that I get errors on
some properties in the window object:
D:\working\PCWORKFLOW42>d:\gui10.pl
Argument "maximizebox" isn't numeric in subtraction (-) at D:\gui10.pl line 24.
Argument "" isn't numeric in subtraction (-) at D:\gui10.pl line
: perl-win32-gui-users@lists.sourceforge.net
> Subject: RE: [perl-win32-gui-users] Wierdness with HyperLink
>
>
> At 19:57 2004-01-15, Frazier, Joe Jr wrote:
> >Problem 2 is even more wierd. When I run the exact same
> code with "use
> >Win32::GUI::Loft::Des
Stephen, that's real nice with the MDI thing. However, there are a few
questions:
Do you(the developer) have to control all the window positions and stuff
manually For example, when I set up a second window, and "maximize" one using
the buttons ( I added the -controlbox property), the other
Stephen, see comments inline:
-Original Message-
From: Stephen Pick [mailto:[EMAIL PROTECTED]
Sent: Friday, January 16, 2004 11:26 AM
To: Frazier, Joe Jr; Win32-GUI
Subject: RE: [perl-win32-gui-users] Scroll bar example
Whoa there, slow down...
This is NOT an MDI "thing".
1) I think what is is saying is that when a button is disabled, the
corresponding image is no longer shown and the clientarea that the image was in
becomes dark gray. I think he wants something like many menu's in many
Windows applications (such as Outlook 2000) where the paste "icon" is disab
1 - 100 of 142 matches
Mail list logo