Re: [perl-win32-gui-users] Bitmap image in the statusbar?

2006-12-15 Thread Frazier, Joe Jr
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

RE: [win32gui] RE: [perl-win32-gui-users] Thinner width

2005-07-27 Thread Frazier, Joe Jr
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. >

RE: [perl-win32-gui-users] Thinner width

2005-07-27 Thread Frazier, Joe Jr
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

RE: [win32gui] RE: [perl-win32-gui-users] Next release [Was: System Tray problem after upgrade to v1.02 from v1.00]

2005-07-22 Thread Frazier, Joe Jr
> 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

RE: [perl-win32-gui-users] Next release [Was: System Tray problem after upgrade to v1.02 from v1.00]

2005-07-21 Thread Frazier, Joe Jr
> 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

RE: [perl-win32-gui-users] Button Questions

2005-06-03 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Right Click Menu

2005-05-10 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] wrappers revisited

2005-02-23 Thread Frazier, Joe Jr
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(

RE: [perl-win32-gui-users] Listview Control functionality - Drag n Drop - Email found in subject

2005-01-10 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Windows not displaying?

2005-01-07 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] A need for a "native" HTML browser?

2004-12-17 Thread Frazier, Joe Jr
> -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

RE: [perl-win32-gui-users] Revisited - Rebar and Toolbars

2004-12-02 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Revisited - Rebar and Toolbars

2004-12-01 Thread Frazier, Joe Jr
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

RE: FW: [perl-win32-gui-users] Website - Code snippets gallery

2004-11-23 Thread Frazier, Joe Jr
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

RE: FW: [perl-win32-gui-users] Website - Code snippets gallery

2004-11-23 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Questions about ListView and Skins and Offering a Code Sample for Anyone Interested

2004-11-18 Thread Frazier, Joe Jr
> 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

RE: [perl-win32-gui-users] Website - Code snippets gallery

2004-11-15 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Turn off an event handler?

2004-10-14 Thread Frazier, Joe Jr
::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

[perl-win32-gui-users] Turn off an event handler?

2004-10-11 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Fwd: Combobox shows up empty !

2004-09-22 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] HELP, please, on UpDown control and textfield

2004-09-13 Thread Frazier, Joe Jr
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:

RE: [perl-win32-gui-users] HELP, please, on UpDown control and textfield

2004-09-13 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] HELP, please, on UpDown control and textfield

2004-09-13 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Working with threads

2004-08-19 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] How to change window/dialogbox icon

2004-07-28 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] exception in Perl's C code... "fixed" by reworking the Perl source. But why?

2004-07-27 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Problem with icons not being set properly

2004-07-23 Thread Frazier, Joe Jr
[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

[perl-win32-gui-users] Problem with icons not being set properly

2004-07-23 Thread Frazier, Joe Jr
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.

RE: [perl-win32-gui-users] Internet explorer, AxWindow, WIN32::OLE

2004-07-13 Thread Frazier, Joe Jr
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 "

RE: [perl-win32-gui-users] What Objects catch RightClick event

2004-07-08 Thread Frazier, Joe Jr
; 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... > >

RE: [perl-win32-gui-users] What Objects catch RightClick event

2004-07-08 Thread Frazier, Joe Jr
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

[perl-win32-gui-users] What Objects catch RightClick event

2004-07-07 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] AxWindow not receiving certain keystrokes

2004-07-03 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Re: Window / Dialogbox scrollbars

2004-06-17 Thread Frazier, Joe Jr
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

[perl-win32-gui-users] Is there anyway to capture a click event for a TextField control

2004-05-10 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Textfield Strangeness?

2004-05-03 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Internet explorer, AxWindow, WIN32::OLE

2004-03-30 Thread Frazier, Joe Jr
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

[perl-win32-gui-users] Any way to get a click event for a textfield?

2004-03-24 Thread Frazier, Joe Jr
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

[perl-win32-gui-users] Is there any way to catch a Click event on a TextField

2004-03-12 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] problem with Win32::GUI::AxWindow when building exe file with Activestate Perlapp

2004-03-02 Thread Frazier, Joe Jr
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:[

RE: [perl-win32-gui-users] A dynamic popup menu example

2004-02-28 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] New Win32 Package suggestion and sample code

2004-02-19 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Listview Colors and Buttons Images...

2004-01-28 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Scroll bar example

2004-01-16 Thread Frazier, Joe Jr
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".

RE: [perl-win32-gui-users] Scroll bar example

2004-01-16 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Wierdness with HyperLink

2004-01-15 Thread Frazier, Joe Jr
: 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

RE: [perl-win32-gui-users] Wierdness with HyperLink

2004-01-15 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] The rebar control

2004-01-14 Thread Frazier, Joe Jr
:[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

RE: [perl-win32-gui-users] The rebar control

2004-01-13 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Updated sourceforge tracker

2004-01-13 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Updated sourceforge tracker

2004-01-13 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Intermediate release of Win32::GUI

2004-01-13 Thread Frazier, Joe Jr
> -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

RE: [perl-win32-gui-users] Intermediate release of Win32::GUI

2004-01-13 Thread Frazier, Joe Jr
> -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 =>

RE: [perl-win32-gui-users] Intermediate release of Win32::GUI

2004-01-13 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Newbie Help

2004-01-12 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] CVS commit

2004-01-08 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Progress bar's [coloring]

2003-12-24 Thread Frazier, Joe Jr
> -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

RE: [perl-win32-gui-users] accelerator keys - now working

2003-11-14 Thread Frazier, Joe Jr
> -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

RE: [perl-win32-gui-users] RE: ListView Item Color

2003-10-14 Thread Frazier, Joe Jr
> -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 >

RE: [perl-win32-gui-users] Click subroutine doesn't get control when script is executing

2003-07-21 Thread Frazier, Joe Jr
> -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

RE: [perl-win32-gui-users] Another novice question - font for AddTextfiled -prompt property

2003-07-16 Thread Frazier, Joe Jr
> -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

RE: [perl-win32-gui-users] Novice question about accessing AddLabel properties

2003-07-16 Thread Frazier, Joe Jr
> -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-

RE: [perl-win32-gui-users] Tooltips - do they work?

2003-07-07 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] no taskbar entry for a Win32::GUI program

2003-06-26 Thread Frazier, Joe Jr
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-

RE: [perl-win32-gui-users] no taskbar entry for a Win32::GUI program

2003-06-25 Thread Frazier, Joe Jr
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 >

RE: [perl-win32-gui-users] no taskbar entry for a Win32::GUI program

2003-06-25 Thread Frazier, Joe Jr
> -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 >

RE: [perl-win32-gui-users] Docs (List of missing desired widgets)

2003-06-17 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Re: [Win32::GUI] List of missing desired widgets

2003-06-17 Thread Frazier, Joe Jr
> 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

RE: [perl-win32-gui-users] XP color and prototype mismatch problems

2003-06-04 Thread Frazier, Joe Jr
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,

RE: [perl-win32-gui-users] How to define generic handler for buttons

2003-05-16 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Grid Control

2003-05-01 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] CALL FOR BUGS (was: The status of win32::gui)

2003-04-09 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] notifyicon tip limit

2003-03-12 Thread Frazier, Joe Jr
>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

RE: [perl-win32-gui-users] COM port logger

2003-02-19 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Hiding and ReOrdering ListView Columns

2002-12-09 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Error using Win32::GUI module

2002-11-22 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] need subroutine to run when Window gets focus

2002-11-14 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Latest Documentation?

2002-10-23 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Systray Double Clicks Not Working?

2002-10-21 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Animated windows [working demo]

2002-10-09 Thread Frazier, Joe Jr
> 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) {

RE: [perl-win32-gui-users] Animated windows [working demo]

2002-10-09 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Animated windows

2002-10-07 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] DateTime object in Win32::GUI 0.665

2002-10-01 Thread Frazier, Joe Jr
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

[perl-win32-gui-users] Re: How to use certain control methods/properties via Win32::GUI::AxWindow

2002-09-13 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] sorting a listview

2002-06-27 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] eek! =)

2002-05-28 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Add ActiveX Hosting to Win32::GUI

2002-03-25 Thread Frazier, Joe Jr
> -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

RE: [perl-win32-gui-users] Re: Re: RTF 2 HTML

2002-03-08 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Re: WYSIWYG

2002-03-06 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Win32::GUI Release 0.0.665

2002-02-28 Thread Frazier, Joe Jr
> -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

RE: [perl-win32-gui-users] Win32::GUI Release 0.0.665

2002-02-28 Thread Frazier, Joe Jr
> -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

RE: [perl-win32-gui-users] (no subject)

2002-02-27 Thread Frazier, Joe Jr
> -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

RE: [perl-win32-gui-users] damn!

2002-02-20 Thread Frazier, Joe Jr
> -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

RE: [perl-win32-gui-users] Keyboard accelerators possible?

2002-01-14 Thread Frazier, Joe Jr
>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

RE: [perl-win32-gui-users] Win32::DialogBox - LostFocus() Event in Button and RadioButton Objects doesn't seem to work for me

2001-11-16 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Problems with List Boxes

2001-10-26 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Save file window

2001-10-22 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Save file window

2001-10-19 Thread Frazier, Joe Jr
>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

RE: [perl-win32-gui-users] getting data from listview and putting it in a MS Excel sheet

2001-10-17 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] (no subject)

2001-09-30 Thread Frazier, Joe Jr
. -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   2   >