[perl-win32-gui-users] Joint Database Technology (i.e. FlatFile/SDBM combo databases) Win32 GUI demonstration code

2017-10-08 Thread Eric Hansen
#-- NAME: KJV_Bible_SDBM.pl (or compiled to .exe) #-- #-- AUTHOR:Eric Hansen U.S.A #-- #-- DATE: August 29, 2017 #-- #-- LANGUAGE: Win32 Perl - ActiveState ActivePerl v5.6.1, binary build 638

[perl-win32-gui-users] Win32-GUI ListView and MS-Access data

2007-02-09 Thread Eric Hansen
How does one go about displaying an MS-Access SQL Result Set In a Win32-GUI Listview (datasheet) so that the data stays refreshed? I imagine one would have to use OLE for this? Some sort of Persistant Connection to the SQL result set? Or actually wouldn't it have to be A MS-ACCESS VIEW? I am

[perl-win32-gui-users] Perl Compiler Recommendation Needed for Win32-GUI/ActivePerl

2007-02-01 Thread Eric Hansen
Can some folks recommend to me a PERL compiler vendor/version that they are Getting to work fine on Windows XP and backward compatible With Windows 2000 professional/98SE? Please supply binary build version of Win32-GUI and ActiveState/ActivePerl tested with this compiler. I am seeing problems w

[perl-win32-gui-users] ListView Bug? - Column Width (0 , -2)

2006-03-20 Thread Eric Hansen
#-- This is a code snipet from a Dual Listbox control dialog which allows #-- the user to reorder the columns of a ListView "on-the-fly". The order #-- of columns saved is saved in a MS-ACCESS table for each unique username #-- so that the user will retain those column order settings for future #

[perl-win32-gui-users] RE: ListView Columns - Text Limit is 1023 Bytes

2006-02-02 Thread Eric Hansen
Here is a great idea sent to me personally from a List Member that I wanted to post for everyone to see. QUOTE: One thought that you may want to consider is caching x number of values at a time. When the item changes, check the cache FIRST(in a hash based on the index number as the key),

[perl-win32-gui-users] RE: ListView Columns - Text Limit is 1023 Bytes

2006-02-02 Thread Eric Hansen
Here is how I populate my textfields on my maintenance screen when a user clicks a ListView item. The index to the record in the database is stored as the last column in each ListView row so I can Use it to quickly/easily lookup the database row to fetch the memo fields in their entirety. su

[perl-win32-gui-users] RE: ListView Columns - Text Limit is 1023 Bytes

2006-02-02 Thread Eric Hansen
The options I have thought of to correct my application are: 1) load the database data memo fields to an associative array at the same time I load the data to the ListView. And then populate the maintenance screen's multiline textfields (to hold the memo fields) in the ListView ItemC

[perl-win32-gui-users] ListView Columns - Text Limit is 1023 Bytes

2006-02-01 Thread Eric Hansen
Can the maximum characters stored in a Listview column be increased to value above 1023 bytes? I need to store memo field data from an MS-Access database with more than 1023 characters In the field. I have done a print statement in my ODBC fetch statement to ensure all the memo Data is returne

[perl-win32-gui-users] RE: TreeView Node structure

2006-01-10 Thread Eric Hansen
This may help. GetChild(NODE) gets the first child. SO you may want to do a loop and perform GetNetSibling Until NODE = 0;-Eric GetChild(NODE) GetNextSibling(NODE) GetPrevSibling(NODE) Here is some code I use to test for a parent node. -

[perl-win32-gui-users] RE: Null Key Won't Save to an Associative Array

2006-01-06 Thread Eric Hansen
I have been working with Perl Win32 GUI / MS-ACCESS for over 5 years And have never come across this issue before until this week. The reason? I have never had the situation where my Win32-GUI / Win32-ODBC front-end To the MS-ACESS database was being used while an MS-ACCESS forms-based User

[perl-win32-gui-users] Null Key Won't Save to an Associative Array

2006-01-06 Thread Eric Hansen
dding Data 1 AP export error 1 Bill Manager 18 Can't Load 36 Charges in Wrong Table 43 Data Entry 3 Data Error 1 Eric Hansen Dallas, Texas USA

RE: [perl-win32-gui-users] Perl Compiler Problems - Win32-GUI

2005-12-28 Thread Eric Hansen
Glenn, I have reported issue to IndigoStar today. I am using Windows XP Professional. Some people on my network Are using Windows 2000 professional. I have 1 GIG RAM on my PC. Eric

[perl-win32-gui-users] RE: Perl Compiler Problems - Win32-GUI

2005-12-28 Thread Eric Hansen
Below is a sample program to compile and run to witness problems As stated in root issue. ### # ActiveState's ActivePerl(Perl Core) 5.6.1.638 # Aldo Calpini's Perl Win32::GUI Module Extension 1.02 # IndigoStar's Perl2exe Com

[perl-win32-gui-users] Perl Compiler Problems - Win32-GUI

2005-12-28 Thread Eric Hansen
Then ran fine for everyone on the network. Eric Hansen Dallas, TX USA

[perl-win32-gui-users] Scrolling Window Demo (Have to use Change method like this...Why?)

2005-11-16 Thread Eric Hansen
In order to get this Scrolling Window demo to work, I had to use the Change method To set most properties of the MDI Frame and Child Window. The properties just would not activate during normal widget creation. Is this a bug, or to be expected? I almost gave up before I thought to try the Change m

[perl-win32-gui-users] TK to Win32-GUI, Win32-GUI to TK utilities

2005-11-15 Thread Eric Hansen
Can someone provide me with the TK to Win32-GUI, Win32-GUI to TKutilities? Thanks, Eric

[perl-win32-gui-users] Textfield WantReturn Works in Window not in DialogBox?

2005-10-27 Thread Eric Hansen
hEdit( # -name => "RE_MyText", # -top=> 205, # -left => 100, # -height => 96, # -width => 300, # -font => $EditFont, # -style => WS_VISIBLE | WS_VSCROLL | ES_MULTILINE | ES_WANTRETURN, #); # $RE_MyText->SetBkgndColor([196,192,153]); Eric Hansen

[perl-win32-gui-users] Re: TreeView - No DoubleClick Event

2005-10-18 Thread Eric Hansen
I have attached a screen shot of the application TreeView Eric Hansen <[EMAIL PROTECTED]> wrote: Hello, I am using the Win32-GUI1.02 release. I have found some added functionality over .665 that has me very happy. Namely, a Change Event for the DateTime widget. But I still

[perl-win32-gui-users] TreeView - No DoubleClick Event

2005-10-18 Thread Eric Hansen
the RichEdit control. Your thoughts please. Eric Hansen

[perl-win32-gui-users] Any Win32::GUI development opportunities?

2005-05-16 Thread Eric Hansen
Does anyone currently have a paying job opportunity for Win32::GUI development?

[perl-win32-gui-users] RE: TreeView Image not showing

2004-09-02 Thread Eric Hansen
WHOOPS, I keep leaving off the top line "use Win32;" when I cut and paste my code Into Outlook.If $PWD is not set, image wont be found. Sorry. -Eric -Original Message----- From: Eric Hansen [mailto:[EMAIL PROTECTED] Sent: Thursday, September 02, 2004 3:40 PM To: '

[perl-win32-gui-users] RE: TreeView Image not showing

2004-09-02 Thread Eric Hansen
$Status->Update(); } else { $Status->Text("pnode=$parent, node=$node, text=$text"); $Status->Update(); } } ## sub Exit_Click { ## return -1; #-- stops event handler } ## sub Window_Terminate { ## return -1; #-- stops event handler } -Original Message- From: Eric Hansen [mailto:[EMAIL PROTECTED] Sent: Thursday, September 02, 2004 3:18 PM To: 'perl-win32-gui-users@lists.sourceforge.net' Subject: TreeView Image not showing PERL GUI USERS, I can't get image to display in TreeView. HELP PLEASE!! -Eric

[perl-win32-gui-users] TreeView Image not showing

2004-09-02 Thread Eric Hansen
PERL GUI USERS, I can't get image to display in TreeView. HELP PLEASE!! -Eric use Win32::GUI; $M = new Win32::GUI::Menu( "&File" => "File", " > E&xit" => "Exit" ); $W = new Win32::GUI::Window ( -title=> "TreeView Example", -menu => $M, -name

[perl-win32-gui-users] RE: Richg Edit Text Capture (selected text)

2004-08-30 Thread Eric Hansen
The below is what I settled on and it works great. use Win32::GuiTest qw(SendKeys); sub Copy_Click { Win32::GuiTest::SendKeys("^C"); } -Original Message----- From: Eric Hansen [mailto:[EMAIL PROTECTED] Sent: Monday, August 30, 2004 1:49 PM To: 'perl-

[perl-win32-gui-users] Richg Edit Text Capture (selected text)

2004-08-30 Thread Eric Hansen
There definitely seems to be a problem getting selected Text out of a rich edit control. We need syntax of below nature (Or something simple) for an application to be built with a menu option Edit->Copy for getting the selected text into the Windows Clipboard. $Clip = Win32::Clipboard;

[perl-win32-gui-users] How to disable a window and/or dialogbox?

2004-08-27 Thread Eric Hansen
I have a program that has dialogbox with 2 listboxes, 4, comboboxes, And 6 buttons. When the user hits a search button (a button used to Do a sql lookup and bring data back) I want the dialogbox to be Disabled so that the user can't mouse click the widgets on the Dialogbox. I use the disable

[perl-win32-gui-users] RE: ESC Key, How to stop program termination?

2004-08-11 Thread Eric Hansen
This does not work. But I did discover that a DialogBox closes on ESC, So if you want to prevent this, make it a Window and you don't need An accelerator object. -Original Message- From: Eric Hansen [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 11, 2004 4:46 PM To: 'perl

[perl-win32-gui-users] RE: ESC Key, How to stop program termination?

2004-08-11 Thread Eric Hansen
Win32::GUI::MessageBox($W,$question,"Some Title",36,); #-- 6=yes, 7=no if ($ans == 7) {return;} return -1; #-- stops event handler } -Original Message- From: Eric Hansen [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 11, 2004 4:26 PM To: 'perl-win32-gui-users@li

[perl-win32-gui-users] ESC Key, How to stop program termination?

2004-08-11 Thread Eric Hansen
My Win32::GUI program terminates when the ESC key is pressed. I only want my users to be able to mouse click File->Exit, or The X in the upper right corner of the window/dialogbox to end The program. How can the ESC key be trapped? Thanks, -Eric Exit_Click { return -1; } Window_Terminate {

RE: [perl-win32-gui-users] ListBox Crashing (Heinz 57 Steak Sauce)

2004-08-09 Thread Eric Hansen
I discovered the problem I was having with ListBoxes. I was trying to have the click event do too much. I was attempting to populate 4 comboboxes. This Was to much for the event handler. So what I do Now is display the last selected items from the 4 Comboboxes in 4 textfields (readonly) instead.

[perl-win32-gui-users] Dual ListView Widget, and ListView->Add(@MyArray), and inline icon

2004-08-06 Thread Eric Hansen
FYI, just an example to share I have been working on This week. I have been asking for help, so I thought I would share some code that is a little off the ("Larry") wall. -Eric #-- Dual ListView Control Example Program #-- by Eric C. Hansen, [EMAIL PROTECTED] #-- Items stay sorted as the move b

[perl-win32-gui-users] RE: Perl-Win32-GUI-Users digest, Vol 1 #901 - 1 msg

2004-08-06 Thread Eric Hansen
Do not use pos => [$x,$y], but instead use top => $x, left => $y, For your example would be... $cs = $main->AddCombobox( -name => "cs", -top => 80, -left => $yval, -tabstop => 1, -width => 170,

RE: [perl-win32-gui-users] ListView (Can it stay sorted?)

2004-08-04 Thread Eric Hansen
GREAT!Works like a charm Glenn! Thanks, Eric -Original Message- From: Glenn W Munroe [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 04, 2004 8:06 AM To: 'Eric Hansen'; perl-win32-gui-users@lists.sourceforge.net Subject: RE: [perl-win32-gui-users] ListView (C

[perl-win32-gui-users] ListView (Can it stay sorted?)

2004-08-03 Thread Eric Hansen
Can a ListView be setup to stay sorted like a ListBox? Like LVS_SORTASCENDING or LVS_SORTDESCENDING And how to declare this? Is there an easier way like property-sort => 1 Thanks, Eric

[perl-win32-gui-users] ListBox Crashing (Heinz 57 Steak Sauce)

2004-08-02 Thread Eric Hansen
I have a ListBox that I load with 66 items maximum. When I try and do a $LB->RemoveItem($item) with 58 items or more In the ListBox, the program crashes. It just ends without any error displayed. 58 is the magic number. If I have 57 items or less, no problem removing an item. I wonde

[perl-win32-gui-users] Change Cursor Not Working

2004-07-30 Thread Eric Hansen
Hello, I have tried using several different cursor files to see if it was my desired cursor file that was In error, but none of the cursors work with below syntax: $Cursor = new Win32::GUI::Cursor("C:\\Bibles\\rainbow.cur"); $W->ChangeCursor($Cursor); #-- $W is my window What could

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

2004-07-29 Thread Eric Hansen
docs at http://jeb.ca/perl/win32-gui-docs/index.pl/win32-gui-imagelist And don't see that syntax documented Thanks, Eric -Original Message- From: Jez White [mailto:[EMAIL PROTECTED] Sent: Thursday, July 29, 2004 4:28 AM To: Frazier, Joe Jr; Eric Hansen; perl-win32

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

2004-07-28 Thread Eric Hansen
n32::GUI::Bitmap("C:\\Bibles\\icon.ico",1);# 1 specifies icon type $W->SetIcon($Icon,0); # 0 = small icon, 1 = big icon $W->Show(); $W->BringWindowToTop(); Thanks, Eric -Original Message- From: Eric Hansen [mai

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

2004-07-28 Thread Eric Hansen
nt: Wednesday, July 28, 2004 3:58 PM To: 'Eric Hansen'; perl-win32-gui-users@lists.sourceforge.net Subject: RE: [perl-win32-gui-users] How to change window/dialogbox icon my $icon = new Win32::GUI::Icon("Icon.ico"); my $ni = $Window->AddNotifyIcon( -icon => $icon, -

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

2004-07-28 Thread Eric Hansen
Can someone show me an example how to Change the camel (perl) icon to a user-defined icon? In both Windows and DialogBoxes? I tried using Windows/DialogBox option -icon => $myicon, Where $myicon is either defined as. $Icon = new Win32::GUI::Icon("C:\\Bibles\\bible.bmp");

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

2004-06-24 Thread Eric Hansen
Brad, May a crazed camel jockey hump your ??. It is easier to thread the eye of a needle than it is to discuss threads with regards to Perl Gui. My suggestion to you is to stick to UNIX and AWK programming where you can kick Off multiple processes running concurrently. From: "Brad Smith" <[E

[perl-win32-gui-users] Microsoft Outlook Email Filter

2004-06-11 Thread Eric Hansen
Here is an email filter I wrote using Win32::OLE, Win32::GuiTest, and Win32::Clipboard Does not use any form of CDO to access the email's internet header. http://www.echo-computing.com/gpage.html Eric Echo Computing

[perl-win32-gui-users] How to inspect Outlook 2002 internet header programmatically

2004-06-03 Thread Eric Hansen
#- -- This program inspects the internet header of all Microsoft Outlook (2002 SP-2) messages in the user-defined "MyAccount" #-- directory to determine if the email was sent to [EMAIL PROTECT

Re: [perl-win32-gui-users] Microsoft Access database connection string

2003-05-02 Thread Eric Hansen
You can create a text file with the following information on the fly and output it to a filename and directory of your choice. I give mine a *.dsn extension. Notice DefaultDir= and DBQ= should point to the directory and filename you output the DSN info to. [ODBC] DRIVER=Microsoft Access Dri

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

2002-12-09 Thread Eric Hansen
Can individual columns of a ListView be hidden or reordered/moved as in Microsoft Excel?

RE: [perl-win32-gui-users] Is this not a basic functionality that has been overlooked?

2002-11-22 Thread Eric Hansen
until you move a child window (to some degree) so that it is partially hidden from the client area of the main window. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eric Hansen Sent: Friday, November 22, 2002 2:23 PM To: '[EMAIL PROTECTED] Source

RE: [perl-win32-gui-users] Is this not a basic functionality that has been overlooked?

2002-11-22 Thread Eric Hansen
Microsoft says you can use WS_OVERLAPPEDWINDOW combined with WS_VSCROLL and WS_HSCROLL To create a window that scrolls. I can not get this to work in Win32::GUI. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eric Hansen Sent: Friday, November 22

[perl-win32-gui-users] Is this not a basic functionality that has been overlooked?

2002-11-22 Thread Eric Hansen
Can anyone tell me if scrolling capabilities (left/right, up/down) for a window and dialogbox Can easily be implemented or not in Win32::GUI perl. Thanks, Eric This e-mail may be privileged and/or confidential, and the sender

[perl-win32-gui-users] Scrolling Window or DialogBox - How to Do it??????

2002-11-21 Thread Eric Hansen
I can't seem to get a window or dialogbox to scroll?? I can get scroll bars to APPEAR using -addstyle => WS_VSCROLL | WS_HSCROLL But they provide no functionality? I want to split my application main window in half and display a 2nd window in the top half and a 3rd window in the bottom half.

RE: [perl-win32-gui-users] ChooseColor() part 2

2002-11-19 Thread Eric Hansen
You might want to check your processes running under task manager after you exit your script that runs choosecolor. I always have to kill the process manually. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan Southwick Sent: Tuesday, November 19,

RE: [perl-win32-gui-users] "Number" and "Case" TEXTFIELDS

2002-11-06 Thread Eric Hansen
Sub Textfield_Change { my $text=$Textfield->Text(); $text=uc($text); # uc uppercase function, or lc lowercase function $Textfield->Text($text); } -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Johan Lindstrom Sent: Wednesday, November 06,

[perl-win32-gui-users] Custom ListView Class Control

2002-10-23 Thread Eric Hansen
Has anybody made a new ListView control class where they have added a dropdown combobox control to each subitem?

[perl-win32-gui-users] Method Combobox->ChangeItem(-top => 100, -left => 150) not working?

2002-10-22 Thread Eric Hansen
I get an error message when I try to dynamically change the position of a combobox widget. I have successfully used the ChangeItem method for ListView controls. Is this not a valid method for comboboxes? Thanks, Eric

[perl-win32-gui-users] DateTime Control how to make readonly???

2002-10-21 Thread Eric Hansen
How can you set the datetime control to only allow user to pick a valid date from graphic calendar. As it is, the user has a choice to enter their own date or pick a date. I know the DateTime control is not a combobox or else I could add property -style => WS_VISIBLE | 3 | WS_VSCROLL | WS_TABSTO

[perl-win32-gui-users] Calculator Control

2002-10-17 Thread Eric Hansen
I need a control that will allow my users to key in a number(qty) or decimal number (money amount) using just their mouse. A calculator control with numbers 0-9 btns, plus these btns: sign toggle, clear, clear entry, decimal. Has anyone made one of these with GUI and can you share the code plea

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

2002-10-03 Thread Eric Hansen
Additionally, did you know that if you left mouse click the month in the Title of the date calendar graphic widget that a drop down list of months appears, and if you left click the year in the Title area a pick list of years displays? Also, if you right click you are asked if you want to goto to

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

2002-10-03 Thread Eric Hansen
# This script demonstrates the DateTime Widget's use # by Eric Hansen October 2002 - [EMAIL PROTECTED] use Win32::GUI; $W = new Win32::GUI::Window( -name => "Window", -text => "Demonstrate DateTime Control", -width => 275, -height =

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

2002-08-09 Thread Eric Hansen
Has anyone written a business application for order entry, inventory management, accounting? I would like to find one written in GUI Perl with source code so I can make any customizations I may need. Thanks!! Eric _ Send and

[perl-win32-gui-users] Status Bar properties

2002-06-25 Thread Eric Hansen
Yes you can devide a status bar. The below code shows how I use half the status bar for text and half for a progress bar. $Status = $W->AddStatusBar( -name => "Status", -text => " ", -font => $SFont, ); $Progress = new Win32::GUI::ProgressBar($Status, -name => "Progress",

[perl-win32-gui-users] Using Win32::GUI and Win32::OLE together to connect to MSExcel

2002-06-20 Thread Eric Hansen
ndef $Excel; } ## # Event Subroutines #--------# sub Exit_Click { return -1; # exits the Win32 GUI Event Handler Win32::GUI::Dialog(); } sub About_Click { $msg=""; $msg=$msg . "Program: Excel port

[perl-win32-gui-users] listview columns

2002-05-08 Thread Eric Hansen
Yes, it is the "-exersize => 1" property setting. It casts out all demons responsible for resizing a column. Just kidding!! To: perl-win32-gui-users@lists.sourceforge.net Cc: Date: Wed, 08 May 2002 05:43:55 GMT From: [EMAIL PROTECTED] Subject: [perl-win32-gui-users] listview columns hi. is

RE: [perl-win32-gui-users] Win32-GUI Applications causing ILLEGALOPERATION

2002-03-21 Thread Eric Hansen
windows and labels!) have a unique -name. Non-unique -names won't cause crashes, you just can't access any of the redefined objects. But missing -names can cause perl to quit. If they do that with the page fault in the vc runtime, I can't tell, but it's worth a shot. have fun, Ha

[perl-win32-gui-users] Win32-GUI Applications causing ILLEGAL OPERATION

2002-03-21 Thread Eric Hansen
I just installed ActivePerl binary build 631 (Perl 5.6.1) and Win32-GUI binary build 0.0.558 which is the latest binary build available according to PPM. When I run my GUI applications they crash with a Perl page fault in module MSVCRT.DLL at 017f:780027al everytime. My GUI apps worked f

[perl-win32-gui-users] PALINDROME Date/Time TRIVIA

2002-02-28 Thread Eric Hansen
2112 is a palindrome since it reads same both frontwards and backwards? What do you guys and gals think? Is it? Eric Hansen Dallas, TX USA

Re: [perl-win32-gui-users] ActivePerl 5.6.1 build 631 with Win32-GUI 0.0.558

2002-02-25 Thread Eric Hansen
-- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Auftrag von > Eric Hansen > Gesendet am: Freitag, 22. Februar 2002 20:05 > An: perl-win32-gui-users@lists.sourceforge.net > Betreff: [perl-win32-gui-users] ActivePerl 5.6.1 build 631 with > Win32-GUI 0.0.558 > > I just un

[perl-win32-gui-users] ActivePerl 5.6.1 build 631 with Win32-GUI 0.0.558

2002-02-22 Thread Eric Hansen
I just uninstalled my old build of both ActivePerl and Win32-GUI and installed the latest releases. Rebooted and everything. Win32-GUI is not working right anymore I ran a small program (with a ListView, see below code) that ran fine with older releases of Perl and Win32-GUI, but runs lik

Re: [perl-win32-gui-users] Re: ListView Checkboxes Workaround

2002-02-21 Thread Eric Hansen
Perl-Win32-GUI-Users" Sent: Thursday, February 07, 2002 8:18 AM Subject: Re: [perl-win32-gui-users] Win32-API version 0.20 > in the mean time, you can access my site at this address: > http://www.perl.it/dada/ > the regular, official address still remains: > http://dada.perl.it &g

[perl-win32-gui-users] Re: ListView Checkboxes Workaround

2002-02-21 Thread Eric Hansen
Thanks Peter. Paul's solution does look straightforward and I'm glad you got it to work. Thanks for the tip Paul!! I am having a problem however installing an upgrade to Win32-API. I have installed version 0.01 already, and PPM tells me it is uptodate when I run PPM "verify --upgrade Win32-A

[perl-win32-gui-users] ListView Checkboxes Workaround

2002-02-20 Thread Eric Hansen
BELOW CODE MIGHT BE USED TO SIMULATE LISTVIEW CHECKBOXES BY TOGGLING DISPLAYED IMAGES IN AN IMAGE LIST. YOU CAN SUBSTITUTE THE Bitmap filenames TO THOSE YOU HAVE ON HAND. use Win32::GUI; $W = new Win32::GUI::DialogBox( -name => "Window", -text => "ListView Checkboxes Workaround",

[perl-win32-gui-users] ListView Checkboxes Initial State Workaround

2002-02-20 Thread Eric Hansen
can change the image(check state) by toggling the image within the ItemClick Event. Use the ItemInfo Method to determine which image is displayed and use the ChangeItem method to display the other image. Hope this isn't too cheesy for everyone !!!! Eric Hansen Dallas, TX USA

[perl-win32-gui-users] ListView Checkboxes, ImageList, etc.

2002-02-19 Thread Eric Hansen
$row = shift; } Off the subject a little, here is a little trick that is useful to someone wanting to initially set focus on a text box and have the data highlighted in replace/overwrite mode. EXAMPLE $DetailSearchTXT->SetFocus(); $DetailSearchTXT->Select(0,length($DetailSearchTXT->Text())); Regards, Eric Hansen Dallas, Texas USA

[perl-win32-gui-users] Re: Tooltip Feature and Win32::GUI thoughts

2002-02-19 Thread Eric Hansen
r > -Ursprüngliche Nachricht- > Von: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Auftrag von > Eric Hansen > Gesendet am: Montag, 18. Februar 2002 16:17 > An: perl-win32-gui-users@lists.sourceforge.net > Betreff: [perl-win32-gui-users] Re: Perl-Win32-GUI-Users dig

[perl-win32-gui-users] Re: Perl-Win32-GUI-Users digest, Vol 1 #328 - 2 msgs

2002-02-18 Thread Eric Hansen
We should all really push for this feature to be fully implemented. I have often wanted it myself to put context sensitive help in my applications. Eric Dallas, Texas USA >>> [EMAIL PROTECTED] 02/17/02 02:14PM >>> Send Perl-Win32-GUI-Users mailing list submissions to perl-win32-gui-use

[perl-win32-gui-users] PerlApp vs Perl2exe

2002-02-15 Thread Eric Hansen
s compiled under both compilers on Windows OS platforms as well as the Novell Network operating system. Eric Hansen Dallas, Texas U.S.A.