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

2002-10-30 Thread markd
i did 'nmake /i' and right after when i got the previous error message i'm told fatal error C1083: Cannot open source file: 'GUI.cpp': No such file or directory i checked win32-gui-0.0.665.tar.gz from dada and sourceforge and neither of the files have gui.cpp in them.

[perl-win32-gui-users] DoEvents and Text Boxes

2002-10-30 Thread Eric Hodges
I am using Win32::Gui to add a GUI to an existing program. This program already uses POE for events and such, so i added an infinite loop that would call Win32::GUI::DoEvents(); This works fine except when i have a test box. If there is a text box then any input into it is doubled. i.e. if y

[perl-win32-gui-users] building win32::gui

2002-10-30 Thread markd
another error when building. i've never been able to build win32::gui myself, always had to use the ppm module. i have ms vc++ 6 and when i try and nmake i get this error C:\Perl\bin\perl.exe -IC:\Perl\lib -IC:\Perl\lib C: \Perl\lib\ExtUtils/xs ubpp -typemap C:\Perl\lib\ExtUtils\typemap -

RE: [perl-win32-gui-users] force a "tab selection" from a tabstri p

2002-10-30 Thread Peter Eisengrein
I generally will set it up something like this: sub Tab_Click { &Tab(); } sub Tab { # do stuff here return 1; } then you can call Tab() directly from your code or via a _Click event. -Original Message- From: Magnone, Angelo [mailto:[EMAIL PROTECTED] Sent: Wednesday, O

RE: [perl-win32-gui-users] force a "tab selection" from a tabstri p

2002-10-30 Thread Magnone, Angelo
I believe this will only "show" the actual tab you selected. I'm using GUI LOFT and what I'd like to do is force a "mouse click" on the tab... so that all the associated fields for that tab are displayed. Any ideas? -Original Message- From: Peter Eisengrein [mailto:[EMAIL PROTECTED]

RE: [perl-win32-gui-users] force a "tab selection" from a tabstri p

2002-10-30 Thread Peter Eisengrein
$tabstrip1->Select(0); # selects the 1st tab $tabstrip1->Select(1); # selects the 2nd tab $tabstrip1->Select(2); # selects the 3rd tab ...etc... -Original Message- From: Magnone, Angelo [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 30, 2002 13:51 To: [EMAIL PROTECTED] Sourceforge.

[perl-win32-gui-users] force a "tab selection" from a tabstrip

2002-10-30 Thread Magnone, Angelo
Is there any way to force a "tab selection" from a tabstrip... for example using $tabstrip1->Show(); Thanks :) This e-mail may be privileged and/or confidential, and the sender does not waive any related rights and obligations. Any

RE: [perl-win32-gui-users] Gui loft and resizing the application

2002-10-30 Thread Johan Lindstrom
At 12:59 2002-10-30 +, Martin Bower wrote: >That might depend on what kind of window you created. A Dialog box is >slightly smaller than a Window I think (for the same size in the TGL Design >window). >If you do a Test window from within TGL, does it show the same size as in >your applicatio

RE: [perl-win32-gui-users] Gui loft and resizing the application

2002-10-30 Thread Martin Bower
>From: Johan Lindstrom [mailto:[EMAIL PROTECTED] >Sent: 30 October 2002 12:34 >To: perl-win32-gui-users@lists.sourceforge.net >Subject: Re: [perl-win32-gui-users] Gui loft and resizing the application >At 10:03 2002-10-30 +, Martin Bower wrote: >>If I design an app with guiloft, and then run i

Re: [perl-win32-gui-users] Gui loft and resizing the application

2002-10-30 Thread Johan Lindstrom
At 10:03 2002-10-30 +, Martin Bower wrote: If I design an app with guiloft, and then run it, quite often I have to resize the app because the window has shrunk somewhat. Has anyone else come across this ? That might depend on what kind of window you created. A Dialog box is slightly small

[perl-win32-gui-users] Gui loft and resizing the application

2002-10-30 Thread Martin Bower
Hi all, If I design an app with guiloft, and then run it, quite often I have to resize the app because the window has shrunk somewhat. Has anyone else come across this ? Would I gain more flexibilty if I learn how to program Win32::GUI directly rather than use the guiloft ? thanks p.s