Not sure about bitmaps, but you can use the standard progress bar
control in a statusbar using the parts paradigm. See the sample
StatutBar2.pl. I have included it here in case it has changed or is no
longer included with the samples:
use Win32::GUI;
use Time::HiRes qw( time );
my $window = new
July 27, 2005 7:14 PM
> To: Frazier, Joe Jr
> Cc: perl-win32-gui-users@lists.sourceforge.net
> Subject: Re: [win32gui] RE: [perl-win32-gui-users] Thinner width
>
> Joe,
>
> What version of Win32::GUI. The -name option shouldn't be
> necessary with later versions.
>
Ditto. I added
-name => 'something'
to the Window->new sub and this fixed the issue for me.
Joe Frazier, Jr.
Senior Support Engineer
Peopleclick Service Support
Tel: +1-800-841-2365
E-Mail: [EMAIL PROTECTED]
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAI
> It wouldn't take much to turn it into a proper example. Does
> this seem like the right way to do it?
>
>
> > Something I would like to see for example would be a "list"
> of sites in say a Win32::GUI::Grid (or listview at worst
> case, if we want to not use extensions in the examples) with
> I would have though that targeting a bug-fix only release for
> a month's time might be realistic. I'd like to get the
> following done:
> - fix as many of the trackers as possible
> - get all the current sample code to work properly
> - include all the examples from the tutorial (and check th
This is easy: set a timer.
use Win32::GUI;
my $Window = new Win32::GUI::Window (
-name => "Window",
-topmost => 1,
-left => 300,
-dialogui => 1,
-top=> 400,
-width => 258,
-height => 280,
-text => "Blah",
);
$Window->Cen
You have a scoping problem. At the very least, you have to move the my
$popup_menu out of the ListView_RightClick sub, and put it somewhere before
your Win32::GUI::Dialog() call. You can either a) just move the declaration
of the variable and leave the assignment where it is in the ListView_R
Here is what I do in my Listview. I have a global var to keep track of
the direction of the currently sorted column and one to keep track of
the column currently sorted. Off the top of my head, I believe this
will work for most fields. Of course, you might need a more general
purpose convtoDate(
Jez, one thing you may want to think about is if there is a way to
implement the semantics in a way simular to how Windows Explorer
currently handles drag and drop for files in the Listview:
Right Click + drag = Drop shows context menu with options: Copy Here,
Move Here, Create ShortCut Here, SEP
See comments in line
> 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
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On
> Behalf Of Glenn Linderman
> Sent: Thursday, December 16, 2004 5:30 PM
> To: YorHel
> Cc: Win32-GUI
> Subject: Re: [perl-win32-gui-users] A need for a "native"
> HTML browser?
>
> I tend to agree with this as
Sent: Wednesday, December 01, 2004 8:52 PM
To: Frazier, Joe Jr
Cc: perl-win32-gui-users@lists.sourceforge.net
Subject: RE: [perl-win32-gui-users] Revisited - Rebar and
Toolbars
Sensational! Thanks Joe,
I tried all sorts o
After playing with this for a while:
$TB = new Win32::GUI::Toolbar(
$W->Rebar,
-name => "Toolbar",
-width => 100,
-style => 2048 + 8 + 4,
-width => 100,
-height => 22,
-nodivider => 1, # add this to remove the line above the toolbar.
);
Joe Frazi
Engineer
Peopleclick Service Support
Tel: +1-800-841-2365
E-Mail: [EMAIL PROTECTED]
> -Original Message-
> From: Frazier, Joe Jr
> Sent: Tuesday, November 23, 2004 8:00 AM
> To: 'Jez White'; Alex Lee; Win32-GUI List
> Subject: RE: FW: [perl-win32-gui-users] W
full of questions from new users requesting
> an example of
> >> > 'how
> >> > do I add' or 'how do I make'.
> >> >
> >> > The question I originally started, was whether their was
> an existing
> >> > facility or repo
> 1) Can you lock the columns in a ListView so you can't drag
> the headers to resize?
> I can see the value in resizing a column on the fly, but for
> whatever reason resizing screws up the layout sometimes and I
> would prefer to just lock it down.
I do not think so, but am not 100% sure
Chris, this is a good idea, but I personally would much prefer if
someone to spend their time fleshing out the official documentation.
Putting examples there would be the most appropriate place and there are
still a lot of methods in there with "TDB". The main reason I bring
this is up is that I h
::Simple and Date::Range Modules. Doh!
Joe Frazier, Jr.
Senior Support Engineer
Peopleclick Service Support
Tel: +1-800-841-2365
E-Mail: [EMAIL PROTECTED]
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On
> Behalf Of Glenn Linderman
> Sent
I have an app which has two radio buttons. One is a text field which
controls a date range ((today -1) - text field value to create a date.
The other is a set of two DateTime controls. The problem I am having is
that when one changes, I want the other to change in response:
Here are the DateTim
Francesco, you "really" need to get the latest version. The version
(.558) on CPAN is like 3 or 4 years old. I do not have Laurent's link
handy, so maybe someone else can send it to you or you can look on
sourceforge for a "relatively" new version, though not as new as what is
what is on Laurent
t Engineer
Peopleclick Service Support
Tel: +1-800-841-2365
E-Mail: [EMAIL PROTECTED]
> -Original Message-
> From: Francesco Rizzi [mailto:[EMAIL PROTECTED]
> Sent: Monday, September 13, 2004 2:03 PM
> To: Frazier, Joe Jr; perl-win32-gui-users@lists.sourceforge.net
> Cc:
See Inline
Joe Frazier, Jr.
Senior Support Engineer
Peopleclick Service Support
Tel: +1-800-841-2365
E-Mail: [EMAIL PROTECTED]
> -Original Message-
> From: Frazier, Joe Jr
> Sent: Monday, September 13, 2004 1:30 PM
> To: 'Francesco Rizzi'; perl-win32-gui-users
1) the UpDown appears to attach to whatever control preceded it
2) I am not 100% sure, but the updown control is used to modifying
numberlike thingies, not text.
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cmctl29
8/html/vbobjupdowncontrol.asp
It looks like there are also so
Ok, after finally getting 5.8.x(had to wait until I had the money for
PDK 5.x), I tried this. I used the following:
use win32::GUI;
use threads;
use Thread::Queue;
# contruct GUI here -->
my $Window = new Win32::GUI::Window (
-name => "Window",
-topmost => 1,
-left
I use this in several of my applications, however, most of the time, I
use GUILoft to build my UI. In this case $win is my window or dialog
and this should work exactly as if I built the window object manually:
my $icon = new Win32::GUI::Icon('icon1.ico');
$win->ChangeIcon($icon);
note that it
What happens if you "my" the $str inside the foreach of the first sub
listing?
Joe Frazier, Jr.
Senior Support Engineer
Peopleclick Service Support
Tel: +1-800-841-2365
E-Mail: [EMAIL PROTECTED]
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On
> Behalf Of
[EMAIL PROTECTED]
> Sent: Friday, July 23, 2004 12:20 PM
> To: Frazier, Joe Jr; perl-win32-gui-users@lists.sourceforge.net
> Subject: Re: [perl-win32-gui-users] Problem with icons not
> being set properly
>
> Hi,
>
> Does this happen when you run as an exe or via the
I have a program where the window is built using The GUI loft with the
window named $win, and I call
$win->ChangeIcon($ico);
$win->ChangeSmallIcon($ico);
This changes the icon for the open window, but, the task bar icon does
not change(stays the perl camel) and the ALT+Tab icon shows nothing.
Not sure if anyone really cares, but recent builds of Mozilla have
options to allow ActiveX controls. The binaries for Windows have this
build option on, but you have to install a plug-in to use it:
http://www.iol.ie/~locka/mozilla/mozilla.htm
Basically, in the below script, you can substitute
"
; From: Jez White [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 08, 2004 9:13 AM
> To: Frazier, Joe Jr; perl-win32-gui-users@lists.sourceforge.net
> Subject: Re: [perl-win32-gui-users] What Objects catch
> RightClick event
>
> Hi,
>
> I made a mistake...
>
>
to do.
Thanks,
Joe Frazier, Jr.
> -Original Message-
> From: Jez White [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 08, 2004 5:01 AM
> To: Frazier, Joe Jr; perl-win32-gui-users@lists.sourceforge.net
> Subject: Re: [perl-win32-gui-users] What Objects catch
> RightCli
I am trying to implement a context menu and need to know what objects
support rightclick event? I know Treeview does from the example, but
what I am really looking for is any way to trigger a popup from a label
(I had to implement a field as a label to catch the click event that
textfield does not
I am having trouble selecting items in a ListBox. Basically, when using
the latest Dev version of Win32::GUI, I can only get the select to work
when multisel is set to 0. The problem is that I need to be able to
select multiple items during program load as defaulting to being
selected. Any help
I would also resize the inner window in proportion to the outer window,
otherwise, if someone resizes the outer window, you see the inner
windows border (assuming you don't want that).
Joe Frazier, Jr.
Senior Support Engineer
Peopleclick Service Support
Tel: +1-800-841-2365
E-Mail: [EMAIL PROTEC
I have an app where I will be putting a UNC path into a text field and need to
see if there is any way to capture a click event on a text field?
Joe
Try adding a height to your textfield. 20 would be a good value.
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On
> Behalf Of Dax T. Games
> Sent: Monday, May 03, 2004 10:00 AM
> To: Perl-Win32-GUI-Users@lists.sourceforge.net
> Subject: [perl-win32-gui-us
Also, assuming you have ActivePerl installed, you can get the
methods/properties/events directly from the OLE browser by going to the
documentation, and scrolling down to Win32::OLE::Browser. This is an object
browser which shows whatever is in the type library for the object. Microsoft
Inter
I need to trap a click event on the text of a textfield control. Is there any
way to do that? I have tried several combinations of using Win32::GUI::Class,
but could be doing it wrong since I really don't understand how it works. What
I am trying to do is have something that looks like a UNC
I have an existing application that is a text field and need to handle a click
event on the
contents. Basically, this text field is going to be a UNC filepath and in the
click handler, I
want to open an explorer window. I was wondering if I could use the new Hook
method or if it is a
lost
I just did the most basic:
perlapp -s d:\explorer.pl -e d:\e.exe and it ran just fine. I tried both the
current form and the line with the uncommented document->write. Both worked
for me on my version of perl,perlapp, etc.
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[
Is that because every time you create menu, you get a new handle? I have an
app that does this very thing and I have noticed that it grows in memory also.
Try doing a Data::Dumper of the object after each recreation to see if the
handle is different. Also, what about the subs? I would "expec
Ramy, I am fairly sure it is the Threads thing. This has been discussed on the
list about 8-12 weeks ago or so(in regards to perlapp if I remember correctly.)
I don't know if anyone has come up with a solution as of yet.
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL P
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
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".
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
: 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
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
:[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
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
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
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
> -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
> -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 =>
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
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
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
> -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
> -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: 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: 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: 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: 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-
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
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-
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
>
> -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
>
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
> 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
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,
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
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
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
>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
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
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
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
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
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
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
> 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) {
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
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
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
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
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
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
> -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
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
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
> -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
> -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: 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: 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
>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
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
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
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
>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
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
.
-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
1 - 100 of 142 matches
Mail list logo