Antwort: Re: [perl-win32-gui-users] Tabstrips

2001-01-31 Thread thomas . emde . te
Thank you! Is the complete script available somewhere? cheers, Thomas

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

2001-01-31 Thread Peter Eisengrein
I've noticed that CTRL-c (KeyPress 3), CTRL-v (KeyPress 22), CTRL-x (KeyPress 24), and CTRL-z (KeyPress 26) do in fact copy/paste/cut/undo to/from the clipboard without the Win32::Clipboard module, at least it does in one of my scripts (perl v5.6.0 and Win32::GUI v0.0.490). But I have had problem

[perl-win32-gui-users] Listview background color

2001-01-31 Thread Erick J. Bourgeois
I'm sending this email as a last resort. I can't figure out how to change the background color of a listview. I tried the following: $Window->ListView->BackColor(hex("FF")); $Window->ListView->BackGround(hex("FF")); There is an option for text color (TextColor(hex("FF"))). erick nev

Re: [perl-win32-gui-users] Tabstrips

2001-01-31 Thread christopher sagayam
I found this sub in the old win32 GUI archive thought it might be useful sub Tab_Click { my $current_tab = $W->Tab->SelectedItem(); foreach $key (keys %{$W->Tab}) { # Skip these items - what remains should be just widgets. next if (grep(/^${key}$/,qw(-handle -name -type)))

Re: [perl-win32-gui-users] Tabstrips

2001-01-31 Thread Jonathan Southwick
Here is how I did it: $MainWindow->AddTabStrip( -name => "FindTabStrip", -left => 10, -top=> 10, -width => $MainWindow->ScaleWidth - 250, -height => 175, -hottrack => 1, ); $MainWindow->FindTabStrip->InsertItem(-text => "Name"); $MainWindow->FindTabStrip->InsertItem(-text => "Build

[perl-win32-gui-users] Tabstrips

2001-01-31 Thread thomas . emde . te
Hello, might be a silly question but anyway: How can I remove all Elements from a Window in case a different Tab on a Tabstrip is clicked and different Elements should be displayed on the Window accordingly? Or can I define separate "Panels" with different Elements for each Tab? mit freundlichen

Re: [perl-win32-gui-users] Win32-GUI Installation

2001-01-31 Thread Aldo Calpini
[EMAIL PROTECTED] wrote: > Guys/galls.. > I am behind a firewall and can't install from the net using PPM , > the only way I can install is to download it and install it > Locally, > > But when I Do I get the following error > > C:\>ppm > PPM interactive shell (2.1.2) - type 'help' for available >

Re: Recall: [perl-win32-gui-users] Win32-GUI Installation

2001-01-31 Thread Aldo Calpini
[EMAIL PROTECTED] wrote: > Butler, Eoin would like to recall the message, > "[perl-win32-gui-users] Win32-GUI Installation". I hate this. please stop 'recalling' messages. cheers, Aldo __END__ $_=q,just perl,,s, , another ,,s,$, hacker,,print;

RE: [perl-win32-gui-users] Win32-GUI Installation

2001-01-31 Thread Eoin_Butler
Guys/galls.. I am behind a firewall and can't install from the net using PPM , the only way I can install is to download it and install it Locally, But when I Do I get the following error C:\>ppm PPM interactive shell (2.1.2) - type 'help' for available commands. PPM> install --location=c:/ win3

[perl-win32-gui-users] Win32-GUI Installation

2001-01-31 Thread Eoin_Butler
Guys/galls.. I am behind a firewall and can't install from the net using PPM , the only way I can install is to download it and install it Locally, C:\>ppm PPM interactive shell (2.1.2) - type 'help' for available commands. PPM> install --location=c:/ win32-gui Install package 'win32-gui?' (y/

[perl-win32-gui-users] Checkbox properties

2001-01-31 Thread Joel Oliveira
Hello all, It's possible to make something like this (to get a checked box): $WD->AddCheckbox(-text=>'&Company',-name=>'Company',-left=>8,-top=>18, -width=>68,-height=>15,-Checked=>1); I'm trying to avoid: $WD->AddCheckbox(-text=>'&Company',-name=>'Company',-left=>8,-top=>18, -width=>68,-height=>1

Recall: [perl-win32-gui-users] Win32-GUI Installation

2001-01-31 Thread Eoin_Butler
Butler, Eoin would like to recall the message, "[perl-win32-gui-users] Win32-GUI Installation".

Antwort: Re: [perl-win32-gui-users] Win32-GUI 0.0.558 Instal

2001-01-31 Thread thomas . emde . te
No, it is not but WinNT but as Aldo pointed out I am using the wrong compiler... Thomas