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

[perl-win32-gui-users] FW: perl-win32-gui-users

2001-03-02 Thread Frazier, Joe Jr
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

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

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

RE: Re[2]: [perl-win32-gui-users] desktop

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

RE: [perl-win32-gui-users] keeping a window open

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

[perl-win32-gui-users] Install

2001-05-24 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Install

2001-05-24 Thread Frazier, Joe Jr
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-

[perl-win32-gui-users] Gui Builder

2001-05-29 Thread Frazier, Joe Jr
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?

RE: [perl-win32-gui-users] Window Size Controls & Miscellany ?'s

2001-05-31 Thread Frazier, Joe Jr
> -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

RE: [perl-win32-gui-users] Window Size Controls & Miscellany ?'s

2001-05-31 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Opening a *New* Browser Window?

2001-06-01 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Opening a *New* Browser Window?

2001-06-01 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Window Size Controls & Miscellany ?'s

2001-06-01 Thread Frazier, Joe Jr
> -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

RE: [perl-win32-gui-users] Opening a *New* Browser Window?

2001-06-01 Thread Frazier, Joe Jr
> -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

RE: [perl-win32-gui-users] Opening a *New* Browser Window?

2001-06-01 Thread Frazier, Joe Jr
> -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

RE: [perl-win32-gui-users] showing firstvisible in a combo box

2001-06-04 Thread Frazier, Joe Jr
one change close $css; system("notepad.exe $css"); } Should be : close OUT; system("notepad.exe $css"); } you HAVE to fl

RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak?

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

RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak?

2001-06-05 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak?

2001-06-05 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak?

2001-06-05 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak?

2001-06-05 Thread Frazier, Joe Jr
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

[perl-win32-gui-users] RE: How to change tip for Notify Icon

2001-06-13 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] RE: How to change tip for Notify Icon

2001-06-13 Thread Frazier, Joe Jr
$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] >

RE: [perl-win32-gui-users] RE: How to change tip for Notify Icon

2001-06-14 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] RE: Opera and "Open Default Browser", Hard Crash?

2001-06-28 Thread Frazier, Joe Jr
> -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

[perl-win32-gui-users] Question about adding methods to GUI objects

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

RE: [perl-win32-gui-users] RE: NotifyIcon

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

[perl-win32-gui-users] RE: killing resize arrows on Window Object

2001-08-24 Thread Frazier, Joe Jr
> >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

[perl-win32-gui-users] What is the value of WM_HELP?

2001-09-03 Thread Frazier, Joe Jr
What is the value of WM_HELP? <>

RE: [perl-win32-gui-users] What is the value of WM_HELP?

2001-09-03 Thread Frazier, Joe Jr
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

[perl-win32-gui-users] Sorting Listview

2001-09-05 Thread Frazier, Joe Jr
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

[perl-win32-gui-users] RE: [The GUI Loft] OLE Tool/Tool tips/Pasting/Hourglass/In Place Editing

2001-09-05 Thread Frazier, Joe Jr
> >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

[perl-win32-gui-users] RE: Right way to sort(WAS Schwartzian Transform?) < Look Ma, an intelligible and descriptive subject line.....

2001-09-06 Thread Frazier, Joe Jr
> -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: > >

[perl-win32-gui-users] Error in PerlSvc when trying to map a drive

2001-09-10 Thread Frazier, Joe Jr
use Win32::Lanman; if(!Win32::Lanman::NetUseAdd({remote => "server\\share", password => "xx", username => "user.name", domain => "domain",

[perl-win32-gui-users] RE: Error in PerlSvc when trying to map a drive

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

RE: [perl-win32-gui-users] Embedding a browser window of some sort?...

2001-09-21 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Embedding a browser window of some sor t?...

2001-09-21 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Selecting multiple files

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

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

2001-09-27 Thread Frazier, Joe Jr
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

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

2001-09-27 Thread Frazier, Joe Jr
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

[perl-win32-gui-users] Combobox

2001-09-27 Thread Frazier, Joe Jr
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 =

RE: [perl-win32-gui-users] Combobox

2001-09-28 Thread Frazier, Joe Jr
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

RE: [perl-win32-gui-users] Absolute newbie Q

2001-09-28 Thread Frazier, Joe Jr
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

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

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

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

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

  1   2   >