Search the web
Sign In
New User? Sign Up
theguiloft · The GUI Loft - a Win32::GUI Design Tool
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 325 - 354 of 790   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
325
Hi! I'm new to windows programming in perl and I was just wondering one little thing: I want to retrieve articles from a newsgroup and print them in a...
Xavier Poulain
hicky@...
Send Email
Oct 22, 2002
8:59 pm
326
... The most basic way to fix this is to try to call Win32::GUI::DoEvents as often as possible. So if you have a tight inner loop or a callback for progress...
Johan Lindstrom
johanl@...
Send Email
Oct 23, 2002
10:20 pm
327
Hi. I've designed a form with the Loft (pretty slick) client, and now I'm trying to run it. I installed the modules that came with the distribution, and...
Steve
az4452fash
Offline Send Email
Nov 3, 2002
8:29 pm
328
... It sounds like you managed to install the Win32::GUI::Loft PPM, but not the Win32::GUI::Adhoc PPM (they're both in the PPM directory of the binary distro)....
Johan Lindstrom
johanl@...
Send Email
Nov 3, 2002
8:36 pm
329
Sorry! I thought I had done that. OK installed that and reinstalled the Loft package too. Now at run time I get: Can't locate Win32/API.pm in @INC (@INC...
Steve
az4452fash
Offline Send Email
Nov 4, 2002
8:17 pm
330
... Yup, the module is missing. Just install the required modules and things should work fine: ...
Johan Lindstrom
johanl@...
Send Email
Nov 4, 2002
8:21 pm
331
That did it, thanks. BTW, that install guide lists module Win32 as something that must be installed. PPM couldn't find a module named "Win32" and I couldn't...
Steve
az4452fash
Offline Send Email
Nov 5, 2002
4:47 pm
332
... Yep. The docs are in the distro tree. Caught me up before, too. -- Michael Higgins...
michael higgins
michael.higgins@...
Send Email
Nov 5, 2002
5:08 pm
333
I have used loft to design a form that includes two combo boxes. I added values with a semicolon-separated list in the PreviewList property for each combo...
Steve
az4452fash
Offline Send Email
Nov 5, 2002
5:10 pm
334
... You haven't read the docs :) The preview stuff is only there in the... preview. So that you can see in TGL what it could look like in your real...
Johan Lindstrom
johanl@...
Send Email
Nov 5, 2002
5:48 pm
335
Release theme: Do it yourself! A new feature added and an old bug removed. In an e-mail conversation Michael Alaly had this great idea: why not specifying the...
Johan Lindstrom
johanl@...
Send Email
Nov 6, 2002
9:40 pm
336
When I try using a perl .exe compiled in Windows 2000 (where everything works fine) and using it in Windows 98, I do not get bitmapped labels; nothing is...
gunthersc
Offline Send Email
Nov 11, 2002
2:05 pm
337
... Are you sure the Windows 9x versions are fully supported by PerlApp? I recall other people having problems with that before... I'll look into the warnings...
Johan Lindstrom
johanl@...
Send Email
Nov 11, 2002
2:12 pm
338
... PerlApp? I ... I didn't see any mention of problems in the tech notes, but I will check the bug database later today. Note the warnings I mentioned only...
gunthersc
Offline Send Email
Nov 12, 2002
9:04 am
339
Is there a way to minimize the DOS window that PERL is running in once you've displayed your GUI Loft windows?...
Steve
az4452fash
Offline Send Email
Nov 16, 2002
2:11 pm
340
... I assume you don't' want to display a console window at all. In that case, take a look at the wperl.exe file in c:\perl\bin. It's the same as perl.exe, but...
Johan Lindstrom
johanl@...
Send Email
Nov 17, 2002
1:45 am
341
I would like to have a window that includes some text and a .gif graphic. I notice that tgl has a control called "graphic" but it isn't referenced in the Loft...
Steve
az4452fash
Offline Send Email
Nov 17, 2002
4:35 pm
342
... The control you should use is, surprisingly enough, the Label control: http://www.bahnhof.se/~johanl/perl/Loft/manual.html#label /J ... Johan Lindström...
Johan Lindstrom
johanl@...
Send Email
Nov 17, 2002
7:10 pm
343
... Oops, didn't see you wanted a GIF. Look at the Win32::GUI::DIBitmap for converting various formats to BMP. ...
Johan Lindstrom
johanl@...
Send Email
Nov 17, 2002
7:13 pm
344
... for ... Thanks for this info. I installed the package, but I can't seem to get it working. The code (first 3 lines lifted straight from the ...
Steve
az4452fash
Offline Send Email
Nov 18, 2002
12:44 am
345
hi, i can't seem to get the demos to run. i've scanned the messages, and tried various things but still no go. when i try to install MODULENAME i get an error...
phil dickinson
phildk@...
Send Email
Dec 10, 2002
7:10 pm
346
I've got a loft application with two windows. The first is a "main" window, and the second one sets some parameters for main and calls a procedure that...
Steve <az4452fash@...>
az4452fash
Offline Send Email
Dec 24, 2002
4:29 pm
347
Did you double-click the batch files that come with the TGL distribution to install the modules? If not, try that. If so, I don't know what the problem could...
Steve <az4452fash@...>
az4452fash
Offline Send Email
Dec 24, 2002
5:05 pm
348
... It sounds vaguely like you do something wrong with Win32::GUI::Dialog() or Win32::GUI::DoEvents. Could you post some code? /J ... Johan Lindström...
Johan Lindstrom
johanl@...
Send Email
Dec 25, 2002
6:01 pm
349
Hi, The demo program 'password.pl' runs on my machine. However it generates a lot of Prototype mismatch errors (see below) Which I attribute to the low version...
Bart Terryn <bart@...>
bart2xyug
Offline Send Email
Dec 26, 2002
6:04 pm
350
... There a lot of code of course, so here are the relevant parts. # main entry $mainwin->Show(); Win32::GUI::Dialog(); # button on mainwin hides mainwin and...
Steve <az4452fash@...>
az4452fash
Offline Send Email
Dec 31, 2002
12:35 am
351
... This would be a good spot to call Win32::GUI::DoEvents(). ... /J ... Johan Lindström Sourcerer @ Boss Casinos johanl@... Latest bookmark:...
Johan Lindstrom
johanl@...
Send Email
Dec 31, 2002
12:50 am
352
When I try to install theGUILoft I got the following errors: First, it didn't like: -location=. When I remove that, it didn't like: Win32::GUI::AdHoc So I...
Adept
adept@...
Send Email
Jan 2, 2003
3:04 pm
353
I have downloaded and ran the tgl.exe to generate a *.gld file. Now I want to create the PERL code to finish my application. When trying to install the AdHoc...
more_rumors <davidmck...
more_rumors
Offline Send Email
Jan 2, 2003
3:04 pm
354
When I try to install theGUILoft I got the following errors: First, it didn't like: -location=. When I remove that, it didn't like: Win32::GUI::AdHoc So I...
rogerdyckman <adept@....
rogerdyckman
Offline Send Email
Jan 2, 2003
3:04 pm
Messages 325 - 354 of 790   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help