RE: [perl-win32-gui-users] console/commandline color module

2001-04-02 Thread Doughty, Matt
Win32::Console Matt Doughty BOT BSC Japan -Original Message- From: Jeremy Aiyadurai [mailto:[EMAIL PROTECTED] Sent: 13”N4??3“u 9:55 To: perl-win32-gui-users@lists.sourceforge.net Subject: [perl-win32-gui-users] console/commandline color module hello i am creating a consol

[perl-win32-gui-users] console/commandline color module

2001-04-02 Thread Jeremy Aiyadurai
hello i am creating a console/command line ftp program in perl...i was wondering if there is a win32 or generic module that will add color and highlighting to text, just like with some software. Jeremy

[perl-win32-gui-users] Win32::GUI HOWTO

2001-04-02 Thread Erick J. Bourgeois
To all Win32::GUI users, I posted the new Win32::GUI HOWTO here: http://www.jeb.ca/howto/The_Win32-GUI_HOWTO.html I have only put the tutorials up (in a HOWTO format). With time permiting, of course, I will do all parts of the Win32::GUI documentation, with exception to the FAQ, which Felix Gae

Re: [perl-win32-gui-users] Re; Popup menu

2001-04-02 Thread Ludvig af Klinteberg
I just tried this popup menu for a trayicon, and it worked great. Just so you all know. -Ludde "Piske, Harald" wrote: > > Talking about RightClick(), is there any way to capture them for other > objects? I only seem to be able to get them for ListView and TreeView. > Textfield and RichEd

RE: [perl-win32-gui-users] Re; Popup menu

2001-04-02 Thread Piske, Harald
Talking about RightClick(), is there any way to capture them for other objects? I only seem to be able to get them for ListView and TreeView. Textfield and RichEdit have their default RightClick behavior (the popup for cut&paste), but I won't get a RightClick for the Window, a Button or a Label (ev

Re: [perl-win32-gui-users] Re; Popup menu

2001-04-02 Thread sean
The popup menu code is great. I tried to create a context menu for a while, but never could get RightClick to work. Is it new in 0.0.558? I was unemployed for several months, so I was running around looking for a job, then I got one in which I had to be trained in Assembly Language, so I've

[perl-win32-gui-users] Re; Popup menu

2001-04-02 Thread Jonathan Southwick
Erick, Here is how I did it: <=== Start of code ===> # define popup menu for listview my $PopupMenu = new Win32::GUI::Menu( "Item Properties" => "ItemProp", ">&Properties" => "ItemProperties", ); # get right-click in listview sub DataView_RightClick { my($X, $Y) = Win32::GUI::GetCurs

[perl-win32-gui-users] Popup menu

2001-04-02 Thread Erick J. Bourgeois
Has anyone implemented a popup menu. That is, if the user right clicks, for example, a listview, then a menu appears. I tried creating one using: sub ListView_RightClick { @cursorpos = Win32::GUI::GetCursorPos(); $Popup = new Win32::GUI::MenuButton(-pos=>[$cursorpos[0],$cursorpos[1]],);