Re: [perl-win32-gui-users] Re: WYSIWYG
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: [EMAIL PROTECTED] To: Perl List cc: Subject: [perl-win32-gui-users] Re: WYSIWYG Hi There is a tool, its name is The GUI Loft. This tool is free, and the best Perl Win32::GUI builder what i found on the Internet. http://www.bahnhof.se/~johanl/perl/Loft/ this link is the product homepage. Regards Gabor ___ Perl-Win32-GUI-Users mailing list Perl-Win32-GUI-Users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users
[perl-win32-gui-users] making windows - help
Joe [EMAIL PROTECTED] 03/05/2002 01:45 PM I have code that is supposed to make 2 windows... only the second window is made, the first never appears and the two are identical. If I add code to make another window at the beginning, the two windows are created, but not the additional one. From what I observed, the first attempt to create a window in a program always fails, and all the others succeed... Any idea what is going on, or what to do about it? Thanks! Joe Pfaltzgraff I'm running WinXP and Komodo 1.2
[perl-win32-gui-users] making windows - help w/code
Joe [EMAIL PROTECTED] 03/05/2002 01:59 PM I have code that is supposed to make 2 windows... only the second window is made, the first never appears and the two are identical. If I add code to make another window at the beginning, the two windows are created, but not the additional one. From what I observed, the first attempt to create a window in a program always fails, and all the others succeed... Any idea what is going on, or what to do about it? Thanks! Joe Pfaltzgraff I'm running WinXP and Komodo 1.2 Here is the code - not much of a program at all yet - Which ever window I tell to show first doesn't show. I can do the first window twice and then it's okay. With this code $W1 doesn't show. use strict; use Win32::GUI; my($window) = new Win32::GUI::Window( -name => "window", -title => "Window Title", -left => 100, -top => 100, -width => 500, -height => 400, ); $window->AddButton( -name => "Button1" ); $window->Button1->Show(); my ($W1, $W2); $W1 = new Win32::GUI::Window( -name => "W1", -title => "First Window", -pos => [ 100, 100 ], -size => [ 300, 200 ], ); $W2 = new Win32::GUI::Window( -name => "W2", -title => "Second Window", POs => [ 150, 150 ], -size => [ 300, 200 ], ); $W1->Show(); $W2->Show(); $window->Show(); Win32::GUI::Dialog();
Re: [perl-win32-gui-users] making windows - help w/code
I'm using Win32::GUI 0.558 on Win2K SP2, and I get all three windows. However, I don't get the button in the window entitled "Window Title". --- [EMAIL PROTECTED] wrote: > > > > > Joe [EMAIL PROTECTED] > 03/05/2002 01:59 PM > > I have code that is supposed to make 2 windows... > only the second window is > made, the first never appears and the two are > identical. If I add code to make > another window at the beginning, the two windows are > created, but not the > additional one. From what I observed, the first > attempt to create a window in a > program always fails, and all the others succeed... > Any idea what is going on, > or what to do about it? > > Thanks! > Joe Pfaltzgraff > > I'm running WinXP and Komodo 1.2 > > Here is the code - not much of a program at all yet > - Which ever window I tell > to show first doesn't show. I can do the first > window twice and then it's okay. > With this code $W1 doesn't show. > > use strict; > use Win32::GUI; > > my($window) = new Win32::GUI::Window( > -name => "window", -title => "Window Title", > -left => 100, -top => 100, -width => 500, > -height => 400, ); > > $window->AddButton( -name => "Button1" ); > $window->Button1->Show(); > > my ($W1, $W2); > > $W1 = new Win32::GUI::Window( > -name => "W1", > -title => "First Window", > -pos => [ 100, 100 ], > -size => [ 300, 200 ], > ); > $W2 = new Win32::GUI::Window( > -name => "W2", > -title => "Second Window", > POs => [ 150, 150 ], > -size => [ 300, 200 ], > ); > > > $W1->Show(); > $W2->Show(); > $window->Show(); > Win32::GUI::Dialog(); > > > > ___ > Perl-Win32-GUI-Users mailing list > Perl-Win32-GUI-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users __ Do You Yahoo!? Try FREE Yahoo! Mail - the world's greatest free email! http://mail.yahoo.com/
RE: [perl-win32-gui-users] making windows - help w/code
I too get all three windows without the button (this is probably because you didn't specify where it should go) on NT4 Workstation. > -Original Message- > From: H C [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 05, 2002 14:09 > To: [EMAIL PROTECTED]; > perl-win32-gui-users@lists.sourceforge.net > Subject: Re: [perl-win32-gui-users] making windows - help w/code > > > I'm using Win32::GUI 0.558 on Win2K SP2, and I get all > three windows. However, I don't get the button in the > window entitled "Window Title". > > --- [EMAIL PROTECTED] wrote: > > > > > > > > > > Joe [EMAIL PROTECTED] > > 03/05/2002 01:59 PM > > > > I have code that is supposed to make 2 windows... > > only the second window is > > made, the first never appears and the two are > > identical. If I add code to make > > another window at the beginning, the two windows are > > created, but not the > > additional one. From what I observed, the first > > attempt to create a window in a > > program always fails, and all the others succeed... > > Any idea what is going on, > > or what to do about it? > > > > Thanks! > > Joe Pfaltzgraff > > > > I'm running WinXP and Komodo 1.2 > > > > Here is the code - not much of a program at all yet > > - Which ever window I tell > > to show first doesn't show. I can do the first > > window twice and then it's okay. > > With this code $W1 doesn't show. > > > > use strict; > > use Win32::GUI; > > > > my($window) = new Win32::GUI::Window( > > -name => "window", -title => "Window Title", > > -left => 100, -top => 100, -width => 500, > > -height => 400, ); > > > > $window->AddButton( -name => "Button1" ); > > $window->Button1->Show(); > > > > my ($W1, $W2); > > > > $W1 = new Win32::GUI::Window( > > -name => "W1", > > -title => "First Window", > > -pos => [ 100, 100 ], > > -size => [ 300, 200 ], > > ); > > $W2 = new Win32::GUI::Window( > > -name => "W2", > > -title => "Second Window", > > POs => [ 150, 150 ], > > -size => [ 300, 200 ], > > ); > > > > > > $W1->Show(); > > $W2->Show(); > > $window->Show(); > > Win32::GUI::Dialog(); > > > > > > > > ___ > > Perl-Win32-GUI-Users mailing list > > Perl-Win32-GUI-Users@lists.sourceforge.net > > > https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users > > > __ > Do You Yahoo!? > Try FREE Yahoo! Mail - the world's greatest free email! > http://mail.yahoo.com/ > > ___ > Perl-Win32-GUI-Users mailing list > Perl-Win32-GUI-Users@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users >
[perl-win32-gui-users] installing win32::gui
ok. i got past my last problem but now i've hit another. i ended up using dmake, which kept on crashing but i got it to compile after turning my computer off a few times. now when i go to do dmake install it comes up with this error DMAKE.EXE: makefile: line 365: Warning -- Empty recipe for special target .xs .cpp DMAKE.EXE: Error -- Ambiguous inference chains for target 'GUI.obj' DMAKE.EXE: 1. GUI.obj(%.obj) --> GUI.xs(%.xs) DMAKE.EXE: 2. GUI.obj(%.obj) --> GUI.c(%.c) DMAKE.EXE: Error -- resolve ambiguity before proceeding. anyone know what this means? thanx in advance