[perl-win32-gui-users] Repeated numbers in textfield

2010-07-02 Thread Dave McLaughlin
nyone else notice this behavior, or is this a known bug, or am I just missing something? Thanks in advance. Dave -- This SF.net email is sponsored by Sprint What will you do first with EVO, the first 4G phone? Visit sprin

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

2004-08-31 Thread Dave Crawford
-Original Message- Can someone tell me how I could go about extracting function prototype information and/or class ID information from DLLs? === Take a look at the OLE-Browser that comes with AS Perl, or install the ovi386.exe package from Microsoft. -Dave

Re: [perl-win32-gui-users] Moving a DialogBox to the forground

2003-03-14 Thread Dave Crawford
I had just realized I had misnamed the owner, and was posting that I located my error. Thanks for the response! -Dave - Original Message - From: "Laurent ROCHER" <[EMAIL PROTECTED]> To: "Win32GUI" Sent: Friday, March 14, 2003 1:27 PM Subject: Re: [perl

Re: [perl-win32-gui-users] Moving a DialogBox to the forground

2003-03-14 Thread Dave Crawford
appearing in the foreground. I tried adding the -topmost => 1 option to the GetOpenFileName() object but it doesn't appear to honor that setting. -Dave - Original Message - From: "Peter Eisengrein" <[EMAIL PROTECTED]> To: "'Dave Crawford'" &l

Re: [perl-win32-gui-users] Moving a DialogBox to the forground

2003-03-14 Thread Dave Crawford
That did the trick, thanks! Apparently my RTFM skills need polishing. -Dave - Original Message - From: "Peter Eisengrein" <[EMAIL PROTECTED]> To: "'Dave Crawford'" <[EMAIL PROTECTED]>; "Win32GUI" ; <[EMAIL PROTECTED]> Sent: Fr

Re: [perl-win32-gui-users] Moving a DialogBox to the forground

2003-03-14 Thread Dave Crawford
quent calls to redisplay my DialogBox properly displays it in the foreground. -Dave - Original Message - From: <[EMAIL PROTECTED]> To: "Dave Crawford" <[EMAIL PROTECTED]> Sent: Friday, March 14, 2003 10:46 AM Subject: Re: [perl-win32-gui-users] Moving a DialogBox

[perl-win32-gui-users] Moving a DialogBox to the forground

2003-03-14 Thread Dave Crawford
urthermore, clicking on the now blinking icon still doesn't move the DialogBox to the foreground. However, If I click on the 3rd party app's icon and then click on my app's icon, the DialogBox then moves to the foreground. Can anyone shed some light on this? -Dave

[perl-win32-gui-users] Win32::gui and Perl 5.8/PDK

2003-01-13 Thread Dave Crawford
n a future release. -Dave In case you want to take up the details with the Win32::GUI developers: Win32::GUI doesn't properly track the PERL_CONTEXT, which is essentially a pointer to the currently active interpreter structure. When a Window receives a message,

[perl-win32-gui-users] Win32::GUI from inside a control

2002-12-16 Thread Dave Crawford
00, '-left', 200 ]; This obviously shows that the variables in question do in fact contain data. So before I go nuts following this deeper into GUI.pm and adding debug statements to the Create() function and so on, does anyone have any ideas? Also, please advise me if this thread would be better suited in the PDK mailing list. -Dave

[perl-win32-gui-users] Background colors

2002-12-13 Thread Dave Crawford
to set the background color of the main window to match that of the Groupbox text background? -Dave

[perl-win32-gui-users] Alternative

2001-10-30 Thread Dave
Does anyone know of an alternative to Perl2Exe ? Thanks in advance, Dave McLaughlin

RE: [perl-win32-gui-users] ListView loses selection

2001-10-26 Thread Dave
That didn't work for me in listview, does it work for anyone else? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Thomas, Timothy B Sent: Friday, October 26, 2001 11:42 AM To: 'Piske, Harald'; 'Peter Eisengrein'; perl-win32-gui-users@lists.sourceforge.ne

RE: [perl-win32-gui-users] ListView loses selection

2001-10-26 Thread Dave
had a hard time finding info on "forcing" something into focus. Thanks again, Dave -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, October 26, 2001 10:36 AM To: Dave Cc: perl-win32-gui-users@lists.sourceforge.net Subject: Re: [perl-win32-gui-

[perl-win32-gui-users] ListView loses selection

2001-10-26 Thread Dave
n when the window goes into the background? Thanks in advance. Dave McLaughlin [EMAIL PROTECTED]

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

2001-08-08 Thread Dave Liney
Joe, The way to do this is to create the method in the Win32::GUI package. Then switch back to the main package when you've finished to write your own code. See the following example: #!/perl -w use Win32::GUI; package Win32::GUI; # Create following methods as Win32::GUI methods sub CenterOnSc

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

2001-06-03 Thread Dave
that helps. Dave McLaughlin [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Chris Etzel Sent: Sunday, June 03, 2001 1:56 AM To: perl-win32-gui-users@lists.sourceforge.net Subject: [perl-win32-gui-users] showing firstvisible in a combo bo

RE: [perl-win32-gui-users] Appending to RichEdit?

2001-05-29 Thread Dave
I used the select method as mentioned and it works perfectly. Thank you very much everyone, this list has proven to be an invaluable resource for me. Dave > -Original Message- > From: [EMAIL PROTECTED] [mailto:perl-win32- > [EMAIL PROTECTED] On Behalf Of Piske, Harald > S

[perl-win32-gui-users] Appending to RichEdit?

2001-05-29 Thread Dave
able to edit it before sending it to print. The richedit module works really well, only I can only seem to add text to it with $RE->Text("$data"); Everytime I do this it replaces the existing text. Is there a way to append to the existing text instead( starting on a new line )? Thank you, Dave

RE: [perl-win32-gui-users] Taskbar & perl2exe -gui crash

2001-05-26 Thread Dave
I have had the same problem you mentioned about perl2exe compiled apps crashing on exit. If you come across a solution please let me know. Thanks, Dave > -Original Message- > From: [EMAIL PROTECTED] [mailto:perl-win32- > [EMAIL PROTECTED] On Behalf Of Glenn Linderman > Se

[perl-win32-gui-users] Printing in windows

2001-05-25 Thread Dave
local printer? Most all information I have found has been to print to a remote / networked printer. Possibly using the standard windows printer dialog box would be great. Thanks in advance, Dave

[perl-win32-gui-users] Re: New Window

2001-05-24 Thread Dave
art that it didn't work, I had named two buttons very similarly, and was using the wrong one :/ Guess I need more sleep. Sorry for wasting your time on this, but I do appreciate all the advice, lessons learned :) Thanks again, Dave McLaughlin

[perl-win32-gui-users] New window?

2001-05-24 Thread Dave
I am having a problem with a dialog box. The main problem is, it won't show up. Below is the code I am using to open a new window from my main window when a button is pushed ( store ) . Before this code is all of my normal application code ( which works fine ). I have tried it with and without the

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

2001-03-07 Thread Dave Moore
subroutine with Name_Click. it would clean up all my scripts alot. for eg cancel buttons all do the same thing. its easier to register a routine for your events than to declare a subroutine that calls a subroutine. just my humble opinion dave

[perl-win32-gui-users] event handlers

2001-03-01 Thread Dave Moore
nt involve too much serious XS stuff. it seems to me that this module wasnt really meant to be used in an OO application? can anyone out there tell me otherwise? dave