Kimberlie vwoman
http://mavin21c.dothome.co.kr/dor-oldy-1.php?emikjzaktheme=ffds3lisyqypik
--
This SF.net email is sponsored by Windows:
Build for Windows Store.
http://p.sf.net/sfu/windows-dev2dev
Jeremy,
On second thought I did find a freshly minted blib folder - I think I
will try package this manually into a tar.gz file.
thanks.
Alex
On Fri, Feb 17, 2012 at 10:08 AM, Alex Lee wrote:
> Thanks Jeremy.
> You were right about the repository.
> I was able to to install the module w
Thanks Jeremy.
You were right about the repository.
I was able to to install the module with dmake - there were some error
messages but seem to work! In particular the Grid & axwindow seem to
need msvc instead.
Although I was able to install with dmake I could not get it to
generate a proper ppm d
Hi all:
does anyone have a PPM distribution (Win32::GUI) that can run on v
5.14 64-bit? I tried creating this myself with the source 1.06 but so
far it is not working.
Thank you very much for your help in advance!
Alex
-
Hi all:
Lately Ive been searching for a simple screensaver that can display
time and date with BIG text. Windows has a text version but it only
displays time. Since PERL is so robust I am wondering if there is a
simple way to write and compile a simple screensaver with PERL?
Nothing fancy just disp
thanks everyone for you help. I will try it and see how it turns out!
al ;)
On 5/22/06, darrik <[EMAIL PROTECTED]> wrote:
>> can anyone tell me what the easiest way to have an application display
>> a jpeg image file? Iam thinking of using Axwindows but I don't even
>> know what activeX to use
Hi,
can anyone tell me what the easiest way to have an application display
a jpeg image file? Iam thinking of using Axwindows but I don't even
know what activeX to use and I really dont want to use IE
-- basically it would be nice to have a list of files on one side and
have the image display its
Dear all:
Have a couple of questions, and was wondering if someone can help me out.
1) Don't know if I am phrasing this correctly, but is there a way to create
a window that stays open all the time, regardless of what is happening? For
example I would like to create a windows that locks itself on
Thank you all for the support so far! I am currently putting together
an outline and would shortly email those who are interested. The
initial step is to see what we want to put in and just as importantly
-- what we want to leave out! Your input would be greatly appreciated.
Holiday and work is rea
I think you guys are right. There probably is a very limited market,
but on the other hand I think a book itself will generate publicity.
This is how I see it as and why i think publishing is useful.
1a) the book would generate is own publicity and with this some
legetimicy - thus I think it would
Hi all: I think win32::gui cookbook is a great idea. Has anyone even
think about trying to officially publish it. I don't mind putting out
the money for self-publish I-universe type book and split the profit!
;)
I can actually submit a few examples mysef.
Please let me know if anyone is interested
HI I am sending google gmail to win32 gui post. Thanks for all the
help in the past guys. I can send more depending on the reponse.
---
Alex Lee has invited you to open a free Google Gmail account. The
invitation will expire
Hi, try
Grid->Hide;
this works for me!
al
--- [EMAIL PROTECTED] wrote:
> Hello perl-win32-gui-users,
>
> I am trying to disable Win32::GUI::Grid.
>
> changing -visible and -enable to 0 with subsequent repainting window
> dont disable Grid.
>
> please see my script below:
>
> use strict;
> us
Hi Jonathan:
I find that win32 grid is more powerful and easier to use -- you can use it like
ListView and have for example, each row to alternate colors.
Example code would look something like this:
for my $row (0..$Grid->GetRows()) {
for my $col (0..$Grid->GetColumns()) {
Thanks Laurent: new module works great!
=
**
* END OF MESSAGE *
__
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online.
http://taxes.yahoo.com/filing.html
Dear group: just wondering if anyone can help me with the win32-gui-grid
module.
When I select cells in the grid and push "ctrl C" to copy the text, I keep
getting this
error message: coinitilaization has not been called.
I even tried linking an event and calling a copy method like so:
tephen Pick <[EMAIL PROTECTED]> wrote:
> Hi,
>
> Try calling Win32::GUI::DoEvents after each output update. This performs
> one GUI event tick and returns immediately afterwards.
>
> Steve
>
> > -Original Message-
> > From: [EMAIL PROTECTED]
> &g
Dear group: Just wondering if someone knows how I can output text in real-time
through some kind
of control (i.e lable textfield).
for example:
foreach(0..10){
output somewhere (label)
sleep 1;
}
#
When I try this it waits u
Dear list memembers:
Does anyone know if it is possible to change the highlight color of a menu?
For example instead of using the standard default (dark blue) when a user
scrolls down the memu,
changing it to light green instead? Below is a sample of typical menu.
$menu = new Win32::GUI::Men
Did you try using: Win32::Shell::Execute instead of fork. I had a lot of
problem with fork under
win32 in the past and finally found this little gem.
Alex ;)
=
**
* END OF MESSAGE *
__
Do you Yahoo!?
Faith Hi
Hi does anyone know how to change the backcolor for a specific index in
listview.
I basically want to alternate colors of each row. Currently I use
the TextBkColor([color]) function, but that would always change every row
color to the last color
I specify.
example blue, green, blue -- would se
wrote:
> Hi Alex,
>
> Can you please kindly tell me where I can find the ppd of
> Win32::GUI::AxWindow?
> Thanks,
>
> David
>
> -Original Message-
> From: Alex Lee [mailto:[EMAIL PROTECTED]
> Sent: Saturday, May 11, 2002 12:54 PM
> To: perl-win32-gu
Hi Jake,
>or has some ideas as to were to start
If you are trying to embed an ActiveX controller then try using this module:
http://perso.club-internet.fr/rocherl/AxWindow.html
It lets you host an ActiveX controller in Win32::Gui. Very simple to use, And
it works!!
Just search through your reg
hi, not sure what you mean, but you can use the show function to hide/show
certain controls in a
window.
for example:
$Win->labelOne->Show('SW_HIDE');
when you want to use it again, simply use Show();
Now if you use a while loop are some derivative of that nature to deriver your
controls, y
Hi, does anyone know if there is a way to load an icon into a image list like
such, without
first converting it to bitmap format with DIBitmap:
## code
my $IL = new GUI::ImageList(16, 16, 24, 5, 10);
$IL->Add('foo.ico');
tried but image did not work.
thanks in advance.
Alex ;)
=
Hi, I try doing what you said:
my $dib = newFromBitmap Win32::GUI::DIBitmap ($hIcon) or die "no $!";
and it did not work (died)--do you know of any oher way?
thanks.
Alex ;)
--- Laurent ROCHER <[EMAIL PROTECTED]> wrote:
> Alex Lee wrote:
> > I tried DIBitmap but
Hi all,
Iam trying to extract an icon from a dll file like such:
code
my $A = 0;
my $B = 'shimgvw.dll'; ## I want icon 1 in this dll file
my $apiExecute = new Win32::API("Shell32", "ExtractIcon", ['P','P','N'], 'N');
my $hIcon= $apiExecute->Call($A,$B,1);
The problem is th
gt; {
> # do something with each item
> }
>
> Jeff Colwell
> No electrons were harmed in making this e-mail message.
>
>
> -Original Message-
> From: Alex Lee [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, April 23, 2002 2:55 PM
> To: perl-win32-gui-user
selected items.
for example if I have a listView of:
pear
apple
peach
nuts
and if the user highlights pear and apple with their mouse,I would like
retrieve the indexes of 0
and 1, thereby allowing me to know that apple and peach was selected.
Thanks in advance!
Alex Lee
Hi All:
Does anyone know how to print out the sentence below
in a richedit control:
'see the fox jump'
the word 'jump' is bold and is also green, while the
rest of the text is just plain black.
Thanks in advance.
Alex :)
=
**
* END OF MESSAGE *
30 matches
Mail list logo