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

2002-03-05 Thread Joseph_Vieira
I'm not looking for a tool to desing a gui window I'm looking for some way to have whatever text comes up on the richtext field look exactly like what will be printed out. Spacing, size, indents, etc Borus Gabor <[EMAIL PROTECTED]>@lists.sourceforge.net on 03/04/2002 04:43:27 AM Sent by

[perl-win32-gui-users] WYSIWYG

2002-03-02 Thread Joseph_Vieira
Hello, I have several simple text files that are automatically created and sent to my office every week that basically just have 5 columns of invoice number, date, amounts and balance. I want to create a gui application that will open the file in a richtext window so that the font and size will b

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

2002-02-13 Thread Joseph_Vieira
Hello, I know this isn't a gui question but I would like everyone's opinion on which is better PerlApp which comes with the PerlDevKit or Perl2exe. My perlgui scripts are almost done and I want to start deploying them on user machines ranging from Windows 98/NT/2000. Development done on NT. Whi

RE: [perl-win32-gui-users] Tab through buttons and textfields

2001-11-08 Thread Joseph_Vieira
You need both the -tabstop => 1, and $Window->{dialogui} =1; to work. Just tried with just one and it didn't work, needed both. Joe Peter Eisengrein <[EMAIL PROTECTED]> on 11/08/2001 01:33:54 PM To: "'Piske, Harald'" <[EMAIL PROTECTED]>, "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>,

Re: [perl-win32-gui-users] ACK!! Sputter Cough... say it isn't so!

2001-11-04 Thread Joseph_Vieira
I ran into this problem with global variables about two weeks ago when I was trying to write a nice little program to run sql queries to any database connection (as opposed to using sqlplus for oracle isql_w for ms-sql etc...). It does seem contradictory to basic programming to use global variabl

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

2001-10-26 Thread Joseph_Vieira
Worked for me. The color of the selection changed from blue to gray, but you still see that it is selected. "Dave" <[EMAIL PROTECTED]>@lists.sourceforge.net on 10/26/2001 01:24:00 PM Sent by: [EMAIL PROTECTED] To: "'Thomas, Timothy B'" <[EMAIL PROTECTED]> cc:(bcc: Joseph Vieir

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

2001-10-26 Thread Joseph_Vieira
I don't think sub Window_GotFocus even works. I tried using it once and it didn't work no matter what I tried, it wasn't important so I gave up. "Thomas, Timothy B" <[EMAIL PROTECTED]>@lists.sourceforge.net on 10/26/2001 11:41:45 AM Sent by: [EMAIL PROTECTED] To: "'Piske, Harald'" <[EM

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

2001-10-26 Thread Joseph_Vieira
Dave, Actually it does not lose the selection in the list view, it only appears that way. If you go to an outside application and then back to the gui window the item is still selected but not highlighted. If you put the focus back on the list view itself and not on the main gui window you will

RE: [perl-win32-gui-users] Save file window

2001-10-23 Thread Joseph_Vieira
I tried loading the FileOp module to my machine and got an error that it couldn't find the Lazy.pm module. I did a search on cpan for lazy.pm and I couldn't find it. What is Lazy.pm, do I need it, how do I get FileOp? Thanks, Joe "Frazier, Joe Jr" <[EMAIL PROTECTED]> on 10/22/2001 01:03:2

RE: [perl-win32-gui-users] Save file window

2001-10-19 Thread Joseph_Vieira
How do you get it to return the filename with the extension. In sfn.pl it added the filters *.txt and *.pl. Is there a way to get that filter so that if I type the name of the file and select the .txt filter I'll have "filename.txt"? It would be nice to think that users will type the extension,

Re: [perl-win32-gui-users] Hiding text while you type

2001-09-14 Thread Joseph_Vieira
Never mind. I found it. [EMAIL PROTECTED]@lists.sourceforge.net on 09/14/2001 10:46:14 AM Sent by: [EMAIL PROTECTED] To: perl-win32-gui-users@lists.sourceforge.net cc:(bcc: Joseph Vieira/DMR/CA) Subject: [perl-win32-gui-users] Hiding text while you type Hello, Is there a way to h

RE: [perl-win32-gui-users] Running user functions after terminate window

2001-09-05 Thread Joseph_Vieira
I'm really, really sorry. Everytime I write a new program I always make some stupid mistake that screws everything up. Usually I catch it but this time I didn't. I'm an idiot and I'm sorry for wasting everyones time. Thanks, Joe Peter Eisengrein <[EMAIL PROTECTED]>@lists.sourceforge.net

[perl-win32-gui-users] Running user functions after terminate window

2001-09-04 Thread Joseph_Vieira
Hello, I have a strange problem with my code. After I terminate my window. The program runs my user defined functions again. Why is it doing this and how do I stop it. I've included my code but I took everything out but the print statements which show the function running after the I terminate

RE: [perl-win32-gui-users] How to get items that are checked in a list view.

2001-08-30 Thread Joseph_Vieira
ListView_ItemClick is called when an item is selected. I want the items that have the check box checked. Peter Eisengrein <[EMAIL PROTECTED]>@lists.sourceforge.net on 08/29/2001 04:45:11 PM Please respond to perl-win32-gui-users@lists.sourceforge.net Sent by: [EMAIL PROTECTED] To: "'p

[perl-win32-gui-users] How to get items that are checked in a list view.

2001-08-29 Thread Joseph_Vieira
Hello, I do get items in a list view that are checked to put in an array/hash/what ever. My code list the contents of a directory and puts them in a list view what I want is that after someone selects the files they want by checking the box next to it. They click on a button and it copies the se