[perl-win32-gui-hackers] 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-hackers] 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-hackers] 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-hackers] 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 ItemCli

[perl-win32-gui-hackers] 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-hackers] RE: [SPAM-MAIL ] - Perl-Win32-GUI-Hackers digest, Vol 1 #239 - 2 msgs - Found word(s) remove list list error in the Text body

2005-12-05 Thread Eric Hansen
Que es esto Scintilla? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Sunday, December 04, 2005 10:34 PM To: perl-win32-gui-hackers@lists.sourceforge.net Subject: [SPAM-MAIL ] - Perl-Win32-GUI-Hackers digest, Vol 1 #239 - 2 msgs -

[perl-win32-gui-hackers] Scrolling Window Demo

2005-11-15 Thread Eric Hansen
I had to use the Change method to get this routine to work. Anyone know why You can't declare titlebar and resizeable in the MDI child when declared? Wont work unless you specify in change method. Does it have to do with Inheritance from the parent preventing this? use Win32::GUI; $M_F = new Win

[perl-win32-gui-hackers] 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