Thank you very much
On 3 June 2015 at 14:35, kmx wrote:
> Win32-GUI-1.12 is available on CPAN with perl-5.22.0 compatibility fix.
>
> --
> kmx
>
>
> --
>
> ___
> Perl-Win32-GU
11:07, Robert May
wrote:
> Indeed, thanks to KMX for this.
>
> I believe that Activestate generally pull source from CPAN and build their
> PPMs from that.
>
> Rob.
>
> On 9 October 2014 10:19, Jeremy wrote:
>
>> Good job.
>>
>> Do you have any plans for
Indeed, thanks to KMX for this.
I believe that Activestate generally pull source from CPAN and build their
PPMs from that.
Rob.
On 9 October 2014 10:19, Jeremy wrote:
> Good job.
>
> Do you have any plans for additional functionality/fixes etc?
>
> Also, do you know how this updated version wi
Hi Bert,
I have found some Win32-GUI PPMs online at http://www.bribes.org/perl/
Follow the links at the bottom of the page depending on whether you have
32- or 64-bit Perl installed. I have not used these myself, but they claim
to be compiled for Perl 5.16.
Rob.
On 1 May 2014 12:00, Robert
Hi Bert,
I tried to reply to your direct email to me a couple of weeks ago, but my
email to your sourceforge email address bounced. Here's what I said:
Links to the latest project built PPMs (for Actrivestate 5.6 qand 5.8
series) are in the Dowloands section on the website at
http://perl-win32-g
Windows will only marshal messages in the range 0..WM_USER across processes.
The messages you are trying to use here are above WM_USER. So you are
passing to the other process an address (in the lParam of the SendMessage)
in your memory space - you are lucky not to crash the other process :-)
Se
On 9 April 2010 08:32, Jeremy White wrote:
> All,
> I have just checked in some changes that will allow the building of
> Win32::GUI with 64 bit perl. The resulting dll's are all 64 bit meaning they
> run native on 64 bit machines with all the advantages (access to more memory
> and increased perf
I just pushed Win32::GUI::SplashScreen V0.04 to CPAN.
V0.03 was shipped with debugging turned on.
I also found a report of a bug with obtaining the bitmap from an
executable packed with PAR (pp - a ) - this is now fixed.
Regards,
Rob.
2009/7/17 Robert May :
> Hi again,
>
> While
Hi again,
While I am in a releasing mood, there's a new version of
Win32::GUI::SplashScreen on CPAN.
The only change is to fix up the build process a litte. No new functionality.
It will be at http://search.cpan.org/~robertmay/Win32-GUI-SplashScreen-0.03/
once search.cpan.org catches up.
Regar
Hi all,
While I am in a releasing mood, there's a new version of
Win32::GUI::HyperLink on CPAN.
The only significant changes are:
- now depends on Win32::GUI 1.02, enabling removal of dependencies on
Win32::API, and simplifying the code a bit
- minor build fixes.
It will be at http://search.cpan
2009/7/15 eros-9 :
> when i close any of the examples in the demos, i get a message:
> (in cleanup) Can't call method "FETCH" on an undefined value at
> c:/perl/site/lib/Win32/GUI/OpenGLFrame.pm line 108 during global
> destruction.
What version of Win32::GUI?
When this error occurs it's down to
[For some reason this appears not to have reached the list - retrying.]
All,
Back in May there was a discussion on this list about Visual Styles
(aka XP Styles). Up to now we have been coping with applying style by
copying a manifest file into the perl bin directory. This is
unsatisfactory for
I have also experimented with OpenGL and Win32::GUI. I started to
write a module to integrate the two, but never completed it - I did
get it running though, and successfully ported most of the examples
that some with the OpenGL module.
I'll make make my code available sometime next week, once I
2009/3/4 Mike Carambat :
> So far, I can get the handle on the window and even issue a CloseWindow, so I
> know I’m hooked into it, but I
> am having trouble with sending the commands over WM_COPYDATA.
As you don't have warnings turned on, and you're using cgi, you can't
see the warnings/errors t
eases (but you might get lucky).
Rob.
2008/12/8 Robert May <[EMAIL PROTECTED]>:
> 2008/12/8 Perl Rob <[EMAIL PROTECTED]>:
>> It turns out that editing the registry is not necessary. I simply had to
>> send the WM_COMMAND message (which means a command was selected from a m
2008/12/8 Perl Rob <[EMAIL PROTECTED]>:
> It turns out that editing the registry is not necessary. I simply had to
> send the WM_COMMAND message (which means a command was selected from a menu)
> and a specific message number (which, for locking/unlocking the taskbar,
> happens to be 424). Here's t
2008/7/18 Roode, Eric <[EMAIL PROTECTED]>:
>
> On 17 July 2008, Sean Healy wrote:
>>
>> ($x, $y) = $Label->GetTextExtentPoint32($string);
>
> Upon further experimentation, there is something not quite right with
> that. The width it returns is too wide. There seems to be some sort
> of per-charac
2008/5/14 peter <[EMAIL PROTECTED]>:
> how can we enable the mouse right click on the Win32::GUI::RichEdit control,
> it is not enabled by default.
Yes it is {1]. (There is probably a better way of doing what you want [2].)
#!perl -w
use strict;
use warnings;
use Win32::GUI 1.05 qw(CW_USEDEFA
2008/4/15 Ilya BANDORIN <[EMAIL PROTECTED]>:
> Does anybody know if it is possible to execute a subroutine when user
> clicks on a popup balloon of NotifyIcon? Now it just closes on mouse
> click. Can't find any solution for this.
Yes, it's possilbe. Look at the code for the NotifyIcon.pl samp
2008/4/15 E. Westbrook <[EMAIL PROTECTED]>:
> I have a Win32-GUI app with a scrollable window area, and it uses the
> "-onScroll => \&scrollfn" model to handle manipulation of the scrollbar
> (and other normal messages). It's working well, such as it is.
>
> Now I'd like to add handling for th
2008/4/29 Eric M. Hillman <[EMAIL PROTECTED]>:
> I'm trying to build a listbox that will have about the same contents as the
> "Applications" tab in Task manager, showing only those apps that have real,
> focusable windows. I've been using Win32::GuiTest's "FindWindowLike" with
> empty search stri
2008/4/30 Steven Vasilogianis <[EMAIL PROTECTED]>:
> I have been having some trouble getting my scroll bars to work well. I
> have been modifying an example I found on Rob May's weblog
> (http://blog.robmay.me.uk/search/label/perl-win32-gui).
>
> Sample code is included below. The problems I am
On 01/03/2008, Bhupendra G J <[EMAIL PROTECTED]> wrote:
> I wanna get the list of processes and the following function in WIn32 Gui
> package is being used.
>
> Win32::PerfLib::GetCounterNames('', \%counter);
>
> On windows xp, am getting the process list but on vista this subroutine
> doesn't retu
On 21/02/2008, David Christensen <[EMAIL PROTECTED]> wrote:
> perl-win32-gui-users:
>
> I'm a Win32::GUI newbie who went through the tutorials the other night:
>
> http://perl-win32-gui.sourceforge.net/cgi-bin/docs.cgi?doc=tutorial
>
> and was shocked to see:
>
> 1. No "use strict" nor "use
On 21/02/2008, Cloud Strife <[EMAIL PROTECTED]> wrote:
>
> I'm tried to compile Win32 GUI 1.06 for Active Perl 5.10 x64 on Windows XP
> Professional 64 bit Edition (Using Platform SDK and Windows SDK v6.0). After
> failing many times, it was successfully done. But AxWindow and Grid have
> prob
On 24/02/2008, M2U Germany <[EMAIL PROTECTED]> wrote:
> On Thursday, February 14, 2008 6:27 PM Robert May wrote:
> > I'd be interested in the solution to this!
> >
> > With the code below I see the toolbar jumping from 1 to 3 rows,
> > despite the fact
On 22/02/2008, Gareth John <[EMAIL PROTECTED]> wrote:
> I'm using Perl v5.10.0 and Win32::GUI 1.0.6 - I'm trying to import the
> following constants:
>
> LVHT_ABOVE
> LVHT_BELOW
> LVHT_NOWHERE
> LVHT_ONITEMICON
> LVHT_ONITEMLABEL
> LVHT_ONITEMSTATEICON
> LVHT_TORIGHT
> LVHT_TOLEFT
>
> but
, and
allows the rebar
to correctly size it.
I don't have Vista, so I can't check if I got the styles right to see the theme
background through the toolbar, but I've don it according to MS docs which say:
"If you want your application to match the Microsoft Windows interface,
u
On 14/02/2008, Jeremy White <[EMAIL PROTECTED]> wrote:
> There is an issue in your code - just ran out of time to fix it! If you can't
> find it let me know - should have time tomorrow.
I'd be interested in the solution to this! I thought that the
problem was going
to be the fact that the code
no longer necessary to use the '-id' option to any of the
Win32::GUI::NotifyIcon methods. The ID is now entirely handled
internally. You will receive deprecated warnings if you use it.
In particular, removing Icons from the system tray should be done using
$NI-&
On 12/02/2008, M2U Germany <[EMAIL PROTECTED]> wrote:
> >I have made a second release candidate for V1.06 (1.06 RC2 aka
> > v1.05_91) available for download from:
> >
> > Please could those who reported problems with RC1 download again, and
> > confirm that their problems are resolved.
>
> The "WS_
On 12/02/2008, peter <[EMAIL PROTECTED]> wrote:
> hi
> the new win32GUI 1.06 is fine and working well, i have tried it on windows
> xp 32bit and vista 32 bit, with perl 5.10.1002
Thank you for the report.
> today i have installed windows xp 64-bit on a different primary partition in
> my hard dis
I have made a second release candidate for V1.06 (1.06 RC2 aka
v1.05_91) available for download from:
http://www.robmay.me.uk/win32-gui-1-06-rc2
This release candidate (hopefully) fixes a number of issues that were
reported with RC1:
- Perl 5.8 PPM failed with perls earlier than 5.8.8
- 'Use of
On 08/02/2008, Perl Rob <[EMAIL PROTECTED]> wrote:
> Is Win32::GUI() capable of creating a marquee-style progress bar for
> indicating activity instead of overall progress?
Yes, it's possible. It will only work on WinXP and later, as it
requires the (non-distributable) ComCtl32.dll V6 and above.
On 07/02/2008, M2U Germany <[EMAIL PROTECTED]> wrote:
> I just updated my perl version to 5.10.0.1001 and therefore also tried the
> new Win32::GUI files. First of all thanks for all the great work!
>
> So far I have only expirienced one problem: Some of the constants don't seem
> to be exported co
All,
I have made source and binary[1] distributions of the first release
candidate available for download.
Win32::GUI v1.05_90 (aka v1.06 RC1) can be found here:
http://www.robmay.me.uk-a.googlepages.com/win32-gui-1-06-rc1
This download page cannot cope with high volume downloads, is
temporary a
ld for Edit Text
> $Window->AddRichEdit(
> -name => "Edit",
> -pos => [0, 0],
> -size => [1000, 800],
> -multiline => 1,
> -hscroll => 1,
> -vscroll => 1,
> -autohscroll => 1,
> -
>From the sound of it you'll be interested in these 2 threads - I'm a
bit confused by your 29781 byte limit, as I though the default limit
was 64K. Anyway, if you replace (what I assume to be) your
Win32::GUI::Textfield with a Win32::GUI::RichEdit the maximum size is
about 2GB. You need to set it
All,
As you are probably aware from an earlier thread that leak over from
the hackers list to list list I am planning a V1.06 release. It's
mostly bug fixes.
I've got a couple of things let to sort out - the most important is
fixing the build against ActiveState Perl when using gcc, but I now
kn
On 28/01/2008, Reini Urban <[EMAIL PROTECTED]> wrote:
>
> Attached are my tests.
Many thanks. I'll tidy them up and apply them.
Knowing what the problem was, with a bit of code inspection I was able
to get the crash to happen reliably with this one-liner:
perl -mWin32::GUI -mWin32::GUI::Scintil
On 27/01/2008, Waldemar Biernacki <[EMAIL PROTECTED]> wrote:
> Thank you Robert,
>
> Now I resolved the problem putting many square bitmap buttons. The result is
> OK. But I would be more happy if I cound put transparent (for instance ico
> files) instead od bmp files. Is it possible? (I've tried t
On 13/10/2007, Octavian Rasnita <[EMAIL PROTECTED]> wrote:
> I know that Win32::GUI doesn't support UTF-8 characters and maybe it won't
> support it very soon, but is it possible to use characters in other european
> languages in a Win32::GUI program?
>
> I just want to use the charset ISO-8859-2 i
On 17/10/2007, Glenn Linderman <[EMAIL PROTECTED]> wrote:
> On approximately 10/16/2007 11:58 PM, came the following characters from
> the keyboard of Brian Rowlands (Greymouth High School):
> > Hi there
> > I'm resubmitting a variation on my previous cry for help (to which I got
> > no answers sad
On 26/08/2007, Robert May <[EMAIL PROTECTED]> wrote:
> On 22/08/07, Waldemar Biernacki <[EMAIL PROTECTED]> wrote:
> > Hello everyone!
> >
> > I've found usefull notes on toolbar. However I have not found how to combine
> > different images to get on
On 13/01/2008, Reini Urban <[EMAIL PROTECTED]> wrote:
> [Sorry for TOFU]
> I found and fixed the error. (Scintilla crash)
>
> Remove the line with #define PERL_GET_NO_CONTEXT at the top of Scintilla.xs
>
> The reason why you cannot reproduce it, it because MSVC obviously is
> compiled with PERL_OBJ
On 11/01/2008, Michael <[EMAIL PROTECTED]> wrote:
> Our team used Win32::GUI modules for several weeks and we made beautifuly GUI
> windows by this
> excellent module. But there still had been a confusion: is there any event
> designed to catch
> "Enter Key pressed" in Win32::GUI::TextField contr
On 12/12/2007, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> hi rob,
> thanks for your support.
>
> I've created a small working example of my script.
Sorry I took so long to get round to looking at this. I cut your
script down to be *short* and something that I could run without
having to insta
On 09/08/2007, Robert May <[EMAIL PROTECTED]> wrote:
> On 26/06/07, Robert May wrote:
> > On 26/06/07, Glenn Linderman wrote:
> > > On 6/26/2007 10:57 AM, Perl Rob wrote:
> > >
> > > > I'm using Win32::GUI::BitmapInline and I have just one probl
On 22/11/2007, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> Hi,
> I've a small application with a configuration window.
> this window is created with a for-loop and some textfields with "prompt" for
> the values.
> this window is shown with an Animate().
> but the prompts aren't shown until i fo
On 05/12/2007, Brian Millham <[EMAIL PROTECTED]> wrote:
> Waldemar Biernacki wrote:
> > Hello!
> >
> > At the end I've enclosed the little code of Perl/Win32:GUI.
> >
> > If you start the code you can notice that the sequence
> > is the following:
> >
> > 1. Window appears on the screen.
> > 2. An
On 07/12/2007, merryxmas <[EMAIL PROTECTED]> wrote:
> i have a form with two radiobuttons, and i want one of them to be checked
> when the form launched. i can't make this by the -check option. what should
> i do
-checked => 1
is the option that you are looking for.
Regards,
Rob.
-
On 03/12/2007, Jeremy White <[EMAIL PROTECTED]> wrote:
> It seems the option --dyndll with perlapp causes the problem - I dont know
> why...
I've not used perlapp, but might it be related to this bug:
http://bugs.activestate.com/show_bug.cgi?id=36715
--dyndll causes (some of?) the bundled librari
On 26/09/2007, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> I've the problem that my labels are only shown after clicking on them
> or after resizing the window.
> do I have to implement a repainting or something?
No, but you have to process the event queue somewhere in your code.
You example is
On 26/09/2007, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> I want to make an input with a dialogbox.
> but I've the problem that the program continues while the dialogbox is
> open.
>
> how can i make the script waiting for closing the dialogbox?
As you haven't posted a *short* and *complete* e
On 19/09/2007, Brian Rowlands (Greymouth High School)
<[EMAIL PROTECTED]> wrote:
> I've used TheLoft to create a gui interface for a program I'm writing. A
> button I click is meant to read a selected line from a listview pane and
> display the results in a selection of tf / cb controls:
>
> #
On 06/09/2007, Veli-Pekka Tätilä <[EMAIL PROTECTED]> wrote:
> Hi list,
> I think I might have found a bug in the event handling of Radio Buttons,
> or else have just somehow misunderstood how their event handling works.
> EIther way, I'd appreciate any comments and clarifications.
>
> Issue:
>
> if
On 06/09/2007, Veli-Pekka Tätilä <[EMAIL PROTECTED]> wrote:
> How good is the Win32::GUI timer for semi realtime applications?
Pretty much useless. The underlying mechanism (using the WM_TIMER
message) has no guarantees on accuracy, and if the application is
processing many messages delivery of W
On 16/08/2007, Perl Rob <[EMAIL PROTECTED]> wrote:
> Well, I answered my own question, so I thought I'd post the answer
> in case it helps someone else who wants to close a window in this
> manner. Turns out I had to create a quoted word list and add
> WM_CLOSE to it (as a part of my "use Win32::GU
On 10/08/2007, Veli-Pekka Tätilä <[EMAIL PROTECTED]> wrote:
> Is there a method I can call to programmatically click a menu item? I'm
> planning on calling it in the Ctrl+N handler in my accelerator table.
Not that I'm aware of.
> I guess I could call the underlying subs that my menu items call,
All,
Apologies for the lack of my presence in this group, and the lack of
progress on a new version of Win32::GUI. I am in the middle of a move
from the UK to Bangalore, and it is taking me longer than expected to
be up and running again.
Rest assured that I haven't forgotten about you or Win32:
On 30/08/07, Robert May <[EMAIL PROTECTED]> wrote:
> Part 1: http://blog.robmay.me.uk/2007/08/scrolbars-part-1-scratch-program.html
> Part 2:
> http://blog.robmay.me.uk/2007/08/scrolbars-part-2-adding-large-control.html
> part 3:
> http://blog.robmay.me.uk/2007/08/scr
> Part 1: http://blog.robmay.me.uk/2007/08/scrolbars-part-1-scratch-program.html
> Part 2:
> http://blog.robmay.me.uk/2007/08/scrolbars-part-2-adding-large-control.html
> part 3:
> http://blog.robmay.me.uk/2007/08/scrollbars-part-3-adding-scrollbars.html
And now part 4:
http://blog.robmay.me.uk/
> > The first article (which only starts to set the scene) can be found at:
> > http://blog.robmay.me.uk/2007/08/scrolbars-part-1-scratch-program.html
> >
> Part 2 is now available at:
> http://blog.robmay.me.uk/2007/08/scrolbars-part-2-adding-large-control.html
And now part 3 at:
http://blog.robm
On 29/08/2007, Robert May <[EMAIL PROTECTED]> wrote:
>
> The first article (which only starts to set the scene) can be found at:
> http://blog.robmay.me.uk/2007/08/scrolbars-part-1-scratch-program.html
>
> I'll post more over the next days. The series will probab
On 28/08/2007, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> I want to create a window with some buttons, labels, and textfields.
> but the window is too small - how can I realize working scrollbars?
Scrollbars are quite a complex topic, and I can't do them justice in a
quick response to your ema
On 27/08/07, marco hofmann <[EMAIL PROTECTED]> wrote:
> As script the report is:
>
> Can't call method "VERSION" on an undefined value at perlversion.pl line 2.
Sorry, that should have been:
print "$]\n";
print ActivePerl->VERSION(), "\n";
Can you try again - if I got it right this time, the sec
On 22/08/07, Waldemar Biernacki <[EMAIL PROTECTED]> wrote:
> Hello everyone!
>
> I've found usefull notes on toolbar. However I have not found how to combine
> different images to get one toolbar. Later on is my code. I have three
> bitmaps: one, two and both. If you call the script as follows:
>
>
On 24/08/07, Marco Hofmann <[EMAIL PROTECTED]> wrote:
> I have problems with pp and win32::gui() package. If I pack
> a script containing only the line
>
> use Win32::GUI();
>
> with
>
> pp -o test.exe test.pl
>
> I get the error message, when starting test.exe:
>
> The procedure entry point "PL_me
On 26/06/07, Robert May wrote:
> On 26/06/07, Glenn Linderman wrote:
> > On 6/26/2007 10:57 AM, Perl Rob wrote:
> >
> > > I'm using Win32::GUI::BitmapInline and I have just one problem with
> > > it: the requirement that my script have write access to the cu
On 02/08/07, Brian Fredette <[EMAIL PROTECTED]> wrote:
> Thanks for the explanation. Now that you mentioned it I recall reading
> somewhere OEM versus NEM. Guess I forgot about that. Thats what I get for
> using old code without deeper reading.
No problem. Reading may not have got you very far
On 02/08/07, Robert May <[EMAIL PROTECTED]> wrote:
> On 02/08/07, Jan Dubois <[EMAIL PROTECTED]> wrote:
> > On Wed, 01 Aug 2007, Robert May wrote:
> > > On 31/07/07, Robert May <[EMAIL PROTECTED]> wrote:
> > > > I'll post another version as soon
On 02/08/07, Jan Dubois <[EMAIL PROTECTED]> wrote:
> On Wed, 01 Aug 2007, Robert May wrote:
> > On 31/07/07, Robert May <[EMAIL PROTECTED]> wrote:
> > > I'll post another version as soon as I've shown that it tests clean
> > > (hopefully tomorrow)
On 31/07/07, Robert May <[EMAIL PROTECTED]> wrote:
> I'll post another version as soon as I've shown that it tests clean
> (hopefully tomorrow).
Attached patches implement the same functionality against AS build 819
and, probably more importantly, perl 9.5.9.
Tests run
On 31/07/07, Brian Fredette <[EMAIL PROTECTED]> wrote:
> I found the threads example posted in this group and began playing around.
> I've modified the code to add a splash screen using Win32::GUI:SplashScreen,
> a timer taken from Tutorial_Part4_timer.pl, a statusbar, and a notifyicon.
> For some
On 30/07/07, Robert May <[EMAIL PROTECTED]> wrote:
> Attached is a patch to win32.c (against AS build 819). It implements
> most of what I've talked about, plus a few other bits.
It fails 2 of the fork() tests on bleed, and one under AS build 819.
> A lot of the compl
Re-post to the win32-gui-users list, without the zip attachment, so
that it goes through.
Rob.
On 30/07/07, Robert May <[EMAIL PROTECTED]> wrote:
> > On 29/07/07, Jan Dubois <[EMAIL PROTECTED]> wrote:
> > > The whole reason for *not* running a message pump is
On 30/07/07, Jan Dubois <[EMAIL PROTECTED]> wrote:
> On Sun, 29 Jul 2007, Robert May wrote:
> > On 29/07/07, Jan Dubois <[EMAIL PROTECTED]> wrote:
> > > PS: Please let me know if you happen to know a mechanism to create a
> > > message-only window on 98
On 29/07/07, Jan Dubois <[EMAIL PROTECTED]> wrote:
> PS: Please let me know if you happen to know a mechanism to create a
> message-only window on 98/NT (a window that is not top-level and
> will not receive broadcast messages). If this were possible, then we
> could get rid of PostThr
On 29/07/07, Jan Dubois <[EMAIL PROTECTED]> wrote:
> On Sat, 28 Jul 2007, Robert May wrote:
> > On 28/07/07, Jan Dubois <[EMAIL PROTECTED]> wrote:
> > > CreateProcess() will return and not wait for command.com/cmd.exe to
> > > initialize. Upon return
On Sat, 28 Jul 2007, Robert May wrote:
> Here's what happens - the call to system, or using backticks, makes a
> request to the OS to find the program associated with *.html files,
> launch it (if it isn't already running) and ask it to open the html
> file.
>
> As pa
On 28/07/07, Robert May <[EMAIL PROTECTED]> wrote:
> On 28/07/07, Robert May <[EMAIL PROTECTED]> wrote:
> > In order to help me track this down, I'd like to get some information
> > from as wide a set of perl versions and operating systems as possible,
> >
On 28/07/07, Robert May <[EMAIL PROTECTED]> wrote:
> In order to help me track this down, I'd like to get some information
> from as wide a set of perl versions and operating systems as possible,
> but I only have Win98 available to me right now. I'd appreciate it
> i
All,
We've had a recent thread discussing a delay in launching an external
program after creating a Win32::GUI window. After some investigation
I think this is a problem in perl, and not something we can do
anything about in Win32::GUI.
In order to help me track this down, I'd like to get some
On 26/07/07, Robert May <[EMAIL PROTECTED]> wrote:
> On 26/07/07, Marc Nürnberger <[EMAIL PROTECTED]> wrote:
> > H... I found a strange behavior after adding some "debugging" prints.
> > The delay occurs when the last command is executed. That `links.html`
On 27/07/07, Veli-Pekka Tätilä <[EMAIL PROTECTED]> wrote:
> First of all, good to hear you are working on a TK-like layout manager.
> I'm looking forward to its release.
Don't hold you breath :-) Just because it's on my list doesn't mean
that I'll get around to it. Of course, anyone else is free
On 27/07/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> is it possible to show an icon within a menu?
Not directly using Win32::GUI, but using Win32::API too ... I posted
some code to the list a few months ago - I was going to give you a
pointer to the list archive, but it appears that SF's se
On 26/07/07, Marc Nürnberger <[EMAIL PROTECTED]> wrote:
H... I found a strange behavior after adding some "debugging" prints.
The delay occurs when the last command is executed. That `links.html`
one. Everything works fine up to that point. But that's only the case
when I use the GUI version.
On 25/07/07, Veli-Pekka Tätilä <[EMAIL PROTECTED]> wrote:
Secondly, I know this is much easier said than done, but would be great
if the GridLayout control could be improved to be more like layout
managers are in other UIs.
I'd like to see a family of layout modules, offering capabilities from
On 25/07/07, Salvador Ortiz García <[EMAIL PROTECTED]> wrote:
On Wed, 2007-07-25 at 16:29 +0300, Veli-Pekka Tätilä wrote:
> Hi list,
> I think I've found a bug or oddity in Win32::GUI::AcceleratorTable
> ...
Yes, right now only the internal handlers are stored in the associated
window, a bug IMH
On 26/07/07, Marc Nürnberger <[EMAIL PROTECTED]> wrote:
Hi there,
first of all thanks for your quick answers.
Geoffrey Spear wrote:
> I don't have a solution for your freezing problem, but you should be
> able to replace "C:/Docume~1/$ENV{'USERNAME'}/Anwendungsdaten" with
> "$ENV{'APPDATA'}" an
On 12/07/07, pcourterelle <[EMAIL PROTECTED]> wrote:
Yes I understood the meaning of the description fine and I'm not questioning
whether the code works. It just never worked in my implementation. I took
the meaning of the description to mean that when the TopIndex is set to (0)
the item at (0)
On 11/07/07, Robert May <[EMAIL PROTECTED]> wrote:
On 11/07/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> I have a small program which can be minimized to the tray.
> Now I want to have an accelerator which fires to minimize the program to the
> tray => this works f
On 11/07/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
I have a small program which can be minimized to the tray.
Now I want to have an accelerator which fires to minimize the program to the
tray => this works fine.
But now I want to restore the window with an accelerator anytime.
It should wo
On 04/07/07, pcourterelle <[EMAIL PROTECTED]> wrote:
Rob, thanks for that...that drove me nuts for a while...what does
SetTopIndex() do if it does ensure the value of the index is visible in the
Listbox? The info says:
SetTopIndex
SetTopIndex(INDEX)
Ensure that a particular item is visible in th
On 03/07/07, Steven Lloyd <[EMAIL PROTECTED]> wrote:
Is there a way to draw a line over a label? Mine keeps disappearing. I
cannot seem to get the DC lines thing to work, even without a label...
Steve,
I think you have a misunderstanding about how drawing works in
windows. Windows doesn't r
On 03/07/07, Perl Rob <[EMAIL PROTECTED]> wrote:
When I run my code to print an image file, the standard "Print" dialog
appears as expected, and my file is printed without problems if I click
"OK". However, if I click "Cancel" on the dialog, Win32::Printer opens a
dialog box with a cryptic error
On 02/07/07, Octavian Rasnita <[EMAIL PROTECTED]> wrote:
Is it possible to display a Flash annimation in a window created with
Win32::GUI?
If yes, please tell me how. I think that it should be possible to do it
using Win32::GUI::AxWindow but I don't know what control name to use in
the -control
On 28/06/07, Jacques Choquette XX (QB/EMC)
<[EMAIL PROTECTED]> wrote:
I am trying to see the first item in the list that I have built for a
combobox. When I run the script, the combobox is there but I cannot
see the item like 'info'. What am I doing wrong? I am using Perl 5.8 on
Windows 2000
$Wi
On 26/06/07, Glenn Linderman <[EMAIL PROTECTED]> wrote:
On approximately 6/26/2007 10:57 AM, came the following characters from
the keyboard of Perl Rob:
> I'm using Win32::GUI::BitmapInline and I have just one problem with
> it: the requirement that my script have write access to the current
>
On 20/06/07, Octavian Rasnita <[EMAIL PROTECTED]> wrote:
I have tried to create a child window, but when I close it, the entire
application closes.
I open it with an option from the menu of the parent window that has
a -onClick => \&Config, and I returned 0 or 1 from the sub Config {}
subroutine
1 - 100 of 480 matches
Mail list logo