Hi,
With Win32::GUI 1.0, modal dialog are more easier to use.
You only need too call DoModal.
Laurent
See Sample below :
use strict;
use Win32::GUI;
my $MainWindow = Win32::GUI::Window->new(
-text => "Main",
-name => "MainWindow",
-pos => [ 200, 200 ],
Hi,
>
> I am just trying to upgrade to Win32-GUI 1.0. I have downloaded the ppm
> from sourceforge.
>
> I note something strange during instalation, this is what the promt
> reads:
>
> E:\Software\programeren\Perl\Modules\Win32-Gui\Win32-GUI-1.0-PPM-5.8>ppm
> install Win32-GUI -force
You probabll
Hi Win32::GUI users,
Win32::GUI version 1.0 is availlable at Sourceforge.
This version come from main developpement branch of Win32::GUI.
- Completely new base code.
- Full NEM/OEM support.
- Lot of control Win32 API method.
- Preserved Perl context.
Hi Win32::GUI users,
A new version 0.99_1 of Win32::GUI is availlable at Sourceforge.
This is first Release candidate for Win32::GUI 1.0.
This version come from main developpement branch of Win32::GUI.
- Completely new base code.
- Full NEM/OEM support.
- L
Hi,
Main reason why Win32::GUI::MenuItem isn't passed to NEM handler, it's
because this object it's not stored anywhere when using
AddMenuButton/AddMenuItem (memory managment reason).
When you use Win32::GUI::MakeMenu, a perl tree representation of your
menu it's create and store in your
Hi,
Win32::GUI::DIBitmap use Freeimage library.
I don't know if GIF be added in next FreeImage release.
Laurent
> Hi
>
> 7 July LZW patent (GIF) is over. Is new version of Win32::GUI::DIBitmap
> with integrated Gif support planned?
>
> thanks
>
> --
> Pavel
Hi,
I have not explicitly try with ActivePerl 5.8.3
but i have made a PPM build of Win32::Clipboard 0.51 for ActivePerl 5.8.
See : http://perso.club-internet.fr/rocherl/Win32GUI.html#PPM
It's work for me in ActivePerl 5.8 (build 805).
I think it's binary compatible.
Laurent.
> Subject: [perl-
Hi,
Actually, Balloon tooltip it's not supported for NotifyIcon because
MinGW header aren't ready ;o)
In MingW only first version of NOTIFYICONDATA struct is defined.
Laurent.
> >
> > Well, yes, you mentioned the possibility of writing XS code, and if you
> > are going to write it, you
Hi,
You can possibly take a look to Locale or i18n package.
http://search.cpan.org/modlist/Internationalization_Locale/Locale
Laurent.
- Original Message -
From: Jez White
To: Win32-GUI
Sent: Tuesday, May 11, 2004 2:15 PM
Subject: [perl-win32-gui-users] Internationaliza
Hi,
You probably can use MouseDown or MouseUp event.
In 0.0.671, i think this event only availlable using NEM event for a child
window.
Add in you textfiled option list :
-onMouseUp => sub { print "MouseUp\n"; }
I haven't test in 0.0.671.
But, using current Win32::GUI Main CVS source code, it'
Hi All,
I have made PPM build from Sourceforge Win32::GUI CVS Main branch.
Change since last time :
a.. MDI support.
b.. New MonthCal control.
c.. New treeView events : BeginLabelEdit, EndLabelEdit
d.. Fix TextField -prompt option.
e.. New methods and bug fix.
I build it from my local
> I need some advice with Win32::Grid:
>
> - the Grid-Combobox items are always editable unlike GUI-Combobox,
> where itcan be prohibited with:
> -style => WS_VISIBLE|3|WS_VSCROLL ,
> in other words disable inPlaceEdit in Grid.
> SetCellEditable(0) turns Grid's Combobox to sim
Hi All,
I have made PPM build from Sourceforge Win32::GUI CVS Main branch.
a.. Completely new base code.
b.. Full NEM/OEM support.
c.. Lot of control Win32 API method.
d.. Preserved Perl context.
e.. New DoModal.
f.. More documentation.
g.. ...
I build it from my local dev dir
Hello,
Actually, size of dropdown button use system metrics for size.
If you want to change this and use a specific size, you can change
CGridCellCombo::Draw method in MFCGrid\GridCellCombobox.cpp.
This method draw a combobox cell.
I think you can only change this line:
CSize sizeScroll(GetSys
> Also, assuming you have ActivePerl installed, you can get the
methods/properties/events
> directly from the OLE > browser by going to the documentation, and
scrolling down to
> Win32::OLE::Browser. I would personally use the
"InternetExplorer.Application" for your purpose.
It's show similar stuf
Hi
>I am playing win Internet explorer in the Win32::HUI::AxWindow and OLE.
>Downloading and displaying pages looks good and easy, howevere I can not
figure out
>if the page has frames how do I treat these frames, means, first , how do
>I know if the page has frames or not, and if it has frames, h
Hi All,
A new Win32::GUI release is availlable.
This release come from 0.0.665 Fix CVS branch.
See on sourceforge for sources and PPM for ActivePerl 5.005, 5.6 & 5.8.
http://sourceforge.net/projects/perl-win32-gui
This release of Win32::GUI introduces many bug fix and new features :
New :
-
Hi,
Actually, no Win32::GUI::ComboBox method do that, but you can limit text
using a SendMessage.
Something like that :
use constant CB_LIMITTEXT => 0x0141;
$combobox->SendMessage(CB_LIMITTEXT, $limit, 0);
See :
http://msdn.microsoft.com/library/en-us/shellcc/platform/commctls/c
Hi All,
I have made new PPM build from Sourceforge Win32::GUI CVS.
I build it from my local dev directory with last CVS source (8/03/2004).
I have made 5.6 and 5.8 PPM and a source zip file from my dev directory.
See : http://perso.club-internet.fr/rocherl/Win32-GUI-Dev/index.html
Laurent
Hello perl-win32-gui-users,
I made new release of my Win32::GUI::AxWindow package.
See major change :
Win32::GUI::AxWindow V0.07
- Correct GetOLE() method when using PAR and PerlApp.
See more at : http://perso..club-internet.fr/rocherl/Win32GUI.html
(documentation, source code +
Oups, sorry for duplicate code.
> Hi,
>
> I don't whant add new code or method to Win32::GUI but make change in
my
> Win32::GUI::AxWindow XS code.
> You advice about Dynaloader it's very usefull.
> I can found dll handler with it. It test it with PAR and it's work
nice.
>
Hi,
I don't whant add new code or method to Win32::GUI but make change in my
Win32::GUI::AxWindow XS code.
You advice about Dynaloader it's very usefull.
I can found dll handler with it. It test it with PAR and it's work nice.
void
GetOLE (container)
CContainer* container
CODE:
{
Hi,
I try with perl2exe and i don't have any problem (no problem with
perl.com image).
But, when i try with PAR i have same problem.
Problem is in GetOLE method, i try to locate Win32::OLE associate dll
using a LoadLibray("OLE").
I need this dll for use an exported function for cr
Hello perl-win32-gui-users,
I made new release of my Win32::GUI::* package.
See major change :
Win32::GUI::DIBitmap V0.14
- Upgrade to FreeImage 3.2 and add new method.
Win32::GUI::Scintilla v1.7
- Upgrade to Scintilla 1.59
See more at : http://perso.club-internet.fr/roc
Hi,
> Could be that I broke this when upping the _WIN32_IE constant to 0x0501.
If
> you put that back to 0x0400 does it work again?
No, _WIN32_IE dont change anything with 0x0501 or 0x0400.
_WIN32_IE apply normaly only on Internet Explorer header file.
WINVER apply on Windows API hearder.
I proba
Hi,
Same problem for me. It's a problem of not up to date include file.
For correct problem, i have tested those 3 methods.
[RED = removeBLUE = Add ]
1) Small change in Win32-GUI source but warming messag.
edit GUI.h and add this line :
#define WIN32_LEAN_AN
Hi,
It's a bug ;o)
I upload a new version of Win32::GUI::Grid.
It correct Ctrl+C problem and fix/add some new features.
See : http://perso.club-internet.fr/rocherl/Win32GUI.html
ChangeLog :
- Fix Clipboard error (Ctrl+C)
- Fix some Grid draw problem
- Add WM_P
I never try to use Menu ActiveX control with AxWindow.
But, i think AxWindow can be use for create a window for load it.
After, the problem depend how complex control interface is.
If control don't use basic properties and methods, it's better to use
Win32::OLE for manipulate ActiveX control in an
Hi,
AxControl don't handle complex object model. AxWindow don't handle
property or methods with IDispatch/IUnknown value.
But, you can try to use Win32::OLE for control it. You can use
AwWindow::GetOLE() method for receive a Win32::OLE object. Win32::OLE better
handle complex OLE control.
Hi,
> I am trying to install Win32-GUI-DIBitmap. At first I install ppm, but
> when I tryed to run demo.pl sample script I got a error:
>
> Can't call method "ConvertToBitmap" on an undefined value at
D:\IPSwitch\test\de
> mo.pl line 14.
Your PPM install is probably good because you can load Win3
OK, i add minimum MinGW version in my how-to.
Laurent.
> Hi Laurent,
>
> Thanks for the reply.
>
> >Strange, i have LVIF_INDENT constant define in mingw commctrl.h file.
> >Do you have it in your commctrl.h file ?
>
> No, not present. Checked MinGW CVS and found it was in that one. Also
found
> t
Strange, i have LVIF_INDENT constant define in mingw commctrl.h file.
Do you have it in your commctrl.h file ?
I build it without problem on my Win98SE with perl56 and perl58.
Laurent
> Hi All,
>
> Have 'checked out' the latest source code - branch Win32-GUI-0_0_670-fix
> from SourceForge CVS (u
Hi All,
I have made PPM build from Sourceforge Win32::GUI CVS.
I build it from my local dev directory with last CVS source (18/01/2004).
I have made 5.6 and 5.8 PPM (don't build for 5.005), and a source zip file from
my dev directory.
See : http://perso.club-internet.fr/rocherl/Win32-GUI-Dev/i
I don't think Win32::API SetParent call is need.
Because -parent => option, and WS_CHILD style already do the job.
I remove SetParent Call and it's work for me
Laurent.
- Original Message -
From: Steve Pick
To: Jez White ; Stephen Pick ; Win32-GUI
Sent: Friday, January 16, 200
Hi all,
It's probably not a problem to made new PPM more regular from CVS source
code for people don't want/can build it.
But, it's more developpement PPM than new WIn32-GUI release.
We need a new place for put it. I think to a specific donwload group on
sourceforge (a package name
Hi,
It's look like a problem for find default libc function.
It's strange.
Theoricly, ActivePerl use Visual C++ 6 msvcrt.lib. Are you using ActivePerl
distribution with visual C++ 6 ?
Look in your makefile, and search for LIBC entry, you must have : LIBC =
msvcrt.lib
If OK,
Hi,
> If the perl code is correct, could this be something in my environment?
> I was running perl 5.8.0 (ActiveState build 806) with Laurent's
> Win32-GUI-0.0.670-PPM-5.8. I upgraded to perl 5.8.2 (808) with no
> change. I then built 0.0.670 from scratch using MinGW following
> Laurent's instruct
Hi,
> I finally got it to work based on your suggestions. The main problem is
> that the types of wParam and lParam vary depending on the message,
> whereas Win32::GUI::SendMessage assumes they are integers.
It's not more true in 0.0.670.
I have add a small change for try to autodetect LPARAM pa
> >>> Also, this has been bugging me for a while,
> >>> but due to my own lack of time, I've yet to research the
> >>> equivalent:
> >>>
> >>>Win32::GUI: the -style option is deprecated!
> >>>Win32::GUI: the -style option is deprecated!
> >>>Win32::GUI: the -exstyle option is depr
>
> I'm assuming the documentation has been updated to mention the
> new methods, etc.?
I have regenerate html doc from source and include it in PPM distribution.
You can found it in ActiveState package index documentation.
But, dont know if documentation is very update ;o)
> Also, this has been
> >A new Win32::GUI release is availlable.
> >This release come from 0.0.665 Fix CVS branch.
>
> Is there a list of fixes?
>
Oups ;o)
I mention fix list in note on Win32::GUI sources download :
http://sourceforge.net/project/shownotes.php?group_id=16572&release_id=203389
I rework it, with
Hi All,
A new Win32::GUI release is availlable.
This release come from 0.0.665 Fix CVS branch.
See on sourceforge for sources and PPM for ActivePerl 5.005 & 5.6.
http://sourceforge.net/projects/perl-win32-gui
You can found PPM for ActivePerl 5.8 on my web site and ppm reposit
Hi,
> Can you give me some more useful hints?
>
> 2. How can I put a hyperlink (clickable und colored, with a cursor,
> that seems like a hand, if I point at link) in Win32::GUI::Grid-Cell.
> I played with SetDefCellTextColor/GetFocusCell/etc but it is not good
> solution for me. Are there "SetCel
Hi,
$Window or $ModalWindow and you miss a } for if ?
For error: "Not a CODE reference at ...", i don't know exacly what append.
But it's probably because you need to add { } around (sort keys %PLZ)[$_].
for(0..((keys %PLZ) - 1)){
if($Window->{(sort keys %PLZ)[$_]}->Checked == 1){
Hi,
Adding a scroll bar on a window don't automaticly scroll it's client
area.
It's only show a scrollbar.
I don't think it's possible to manage this scroll bar for update your
window (with current Win32::GUI version).
Laurent.
> Hi !
> Help, please ;)
>
> Why my Button is not "sroll
> Laurent ROCHER wrote:
> > I have play a little with CVS, and i think i can setup CVS like this.
>
> good news. I can play with CVS, but I know almost nothing about
> branches.
>
> > 1) Tag current CVS source code as Win32-GUI-0_0_622.
> >I have notice a probl
Hi Aldo,
Happy to read you again.
Last week, i have proposed to use SourceForge CVS for start a bug fix branch
on 665 release.
I have play a little with CVS, and i think i can setup CVS like this.
1) Tag current CVS source code as Win32-GUI-0_0_622.
I have notice a problem with text files. E
Hi,
Try with Window handle :
my $ret = $flash -> Call($mainwindow->{-handle}, 1);
Laurent.
> Does anyone know how I could go about making my main window flash when a
> certain event has occured?
>
> I've tried something like the following code, but can't seem to get it to
> work.
>
> $mai
vely developed. I'm currently working on the
> internals and I expect to have version 1.00 ready for Easter (but
> don't hold your breath on it).
> > It seems a few people in the last few days (Laurent Rocher and
Trevor
> > Garside) could actually move
Hi,
> So what are the steps to package Win32::GUI (version 0.0.665) into a PPD
> file, so that it can be distributed?
>
> I know others have done it, but I have never made a PPD out of anything...
>
> Pointers to appropriate documentation is fine, if it covers everything
> needed, or pointers + sp
Hi,
For people want build Win32::GUI from source code and don't have Visual C++.
With ExtUtils::FakeConfig, it's possible to use MinGW for building Win32-GUI
module for ActivePerl.
MinGW is a free GCC for windows.
ExtUtils::FakeConfig is a perl module writen by Mattia Barbon for substitute
some C
> Do you know if Microsoft Visual C++ .NET Standard 2003 would work?
I don't know.
If you have it, only way it's try ;-)
> There are a few other areas in the XS and core win::gui that I might start
> playing with over the next few months. Is there a process in place to get
> new/changed code into
Hi,
> I need to be able to set and read the minutes and seconds for a date time
> control, but from the XS code it looks like this is not possible (!?).
Yes, Win32::GUI::DateTime by default only work with date.
You can turn it to a time control by adding DTS_TIMEFORMAT (0x0009)
style.
>
Hello,
It's possible to have a scroll bar with a label, but i don't think you
can manage text scrolling.
Easy way, it's to use a multiline TextEdit with Label look.
my $Multitext = $Window->AddTextfield (
-name => "Multitext",
-multiline => 1,
-vscroll
Hi,
> I need to be able to set and read the minutes and seconds for a date time
> control, but from the XS code it looks like this is not possible (!?).
Yes, Win32::GUI::DateTime by default only work with date.
You can turn it to a time control by adding DTS_TIMEFORMAT (0x0009)
style.
>
Hello perl-win32-gui-users,
I made new release of my Win32::GUI::* package.
See major change :
Win32::GUI::DIBitmap V0.8
- Upgrade to FreeImage 3.0 and add new method.
Win32::GUI::AxWidow v0.6
- Rewrite creation method and no more need to call Release method.
- C
Try to add a -name option in your AddLabel.
In Win32::GUI 0.0.558 a name option is required for any windows.
Laurent.
- Original Message -
From: "Becker, Joern {DR-N~Mannheim}"
I wrote a small Win32::GUI Testprogram, which works well with perl 5.6.0/NT.
Now i have changed to perl 5.8.0/NT
> Hello,
>
> > See attached sample.
> >
> > Laurent.
>
> I am sorry, but probably do you forget to send attachment( with sample)?
>
I send sample as attached zip file (?). See below.
Laurent
---
# perl -v
#
# Hosting WebBrowser
#
use Win32:
Hello,
You need to use a WebBrowser control for that (not a MSHTML).
MSHTML display html but can not navigate in same window (lauch defaut
navigator).
You can directly write HTML in a webbrowser with GetOLE and Win32::OLE.
$OLEControl = $Control->GetOLE();# Get Win32::Ole obj
> Thanks for your reply. U mentioned an attached
> file,but I don't see it. I think the listserver
> stripped away the attached file. Maybe if you can cut
> and paste it into the message that might work.
See below.
Laurent.
#! perl -w
#
# Test Basic Grid method
#
use strict;
use Win32::GUI;
Tooltip and basic NEM work on my Win98se, perl 5.6 and perl 5.8, with
Win32::GUI 665.
Cheers,
Laurent.
- Original Message -
From: "Jeremy White" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>;
Sent: Wednesday, July 09, 2003 8:37 PM
Subject: Re: [perl-win32-gui-users] Tooltips - d
Hi,
When i try to show a empty grid, i don't have small cells like you.
Do you call AutoSize between AddGrid and Show ?
Autosize calc mimimum size of each cell for maximise cell display, but
if you have empty cell, you have something like your second picture.
See attached sample.
Same problem for me.
I replace
$Window->AddDateTime(
with
new Win32::GUI::DateTime(
-parent => $Window,
And Tootip work on Button.
I don't see any NEM (New Event Model) availlable on DateTime Control in
Win32::GUI Source code.
Only generic event are available
-events => {
MouseMove => sub
My previous message was unfinished ;o)
The second parameter of InsertColumn is the cell format not Column index.
I put a small sample with InsertColumn and InsertRow as attached file.
Laurent.
---
From: "Chris Wear
Hi,
I think the problem in your sample is InsertColumn.
InsertColumn (strHeading, [nFormat = DT_CENTER|DT_VCENTER|DT_SINGLELINE],
[nColumn = -1]) => return icol
You set
Laurent.
>
> I am trying to use Grid.pm to display rows after rows
> of data I retrieve from a DB2 database. The problem is
Hi,
Eventualy, you can take a look to PAR (Perl ARchive toolkit)
It's possible to turn a script to an executable.
It's available via ActiveState PPM (but not last release, 0.67 i think).
See : http://search.cpan.org/author/AUTRIJUS/PAR-0.69/
Laurent.
>> By the way, is there a way t
If you have the last Win32::GUI 0.0.655, you can use the NEM (New Event
Model) for set an event function at creation time.
$Button = $Window->AddButton (
-name => "Test",
-text => "Test",
-events => { Click => \&Test },
# -events => { Click => "Test" },
# -events
Hi All,
I made a new package for add a Grid control to Win32::GUI.
See more at : http://perso.club-internet.fr/rocherl/Win32GUI.html#Grid
(documentation, source code + sample, ppm package for ActivePerl 5.6 & 5.8)
I use MFC Grid control 2.24 by Chris Maunder from CodeProject.com
sday, May 14, 2003 4:21 AM
Subject: [perl-win32-gui-users] Re: Web Browser
> Thanks for information.
>
> In message <[EMAIL PROTECTED]>
>"Re: [perl-win32-gui-users] Re: Web Browser"
>""Laurent ROCHER" <[EMAIL PROTECTED]>" wrote:
>
> Is it possble to add a function to automatically send id/pass
> as response to basic authentication by setting them into the script?
>
> In my company all employee must push bottun on morming and evening
> >from web browser as a time card & at start we enter my id/pass to login.
>
> It's not pra
Hi,
See small sample using ScGrid with Win32::GUI::AxWindow in SCGrid.zip
file.
You need set Redraw property Off before change Rows, Cols and some
general Grid properties.
Then set Redraw On when finish change.
I don't know exactly why, but work ;o)
Laurent.
- Original Messa
If you want use a grid now, you can use an ActiveX grid with
Win32::GUI::ActiveX.
see : http://perso.club-internet.fr/rocherl/Win32GUI.html#AxWindow
I found a free ActiveX Grid. see : http://www.scgrid.com/
Laurent.
- Original Message -
From: "Garside, Trevor" <[EMAIL PROTECTED]>
To:
Se
FW: scanning images using perl...
Some ideas :
- Imaging for window :
In my Win98se, windows come with a activex call ImgScan.ocx (help in
imgocxd.hlp).
you can probably use it with Win32::OLE (or Win32::GUI::ActiveX).
- See Win32::Scanner::EZTWAIN modules.
(http://search.c
how to display images?
> From: Magnone, Angelo
>
> Other than PerlTK are there any perl win32 modules for displaying
photo images (bmp/jpg/etc...)?
You can see my Win32::GUI::DIBitmap package.
With it, you can load several image format (JPEG, PNG, TIFF, TGA, PCX,
...) and easily render
> I installed Perl 5.8 and program crashed right away. But that was because
> the ppm I used for Win32::Gui was for Perl 5.6. For some reason there is
> no ppm for Perl 5.8 on the SourceForge.net web site, at least I didn't see
> one. Looked through the archives and found it on
> http://perso.cl
Have you try -owner option :
-owner => $Window
Laurent.
> Now that my DialogBox is correctly displaying in the foreground I've run
> into another issue. I have a button in the DialogBox who's 'click' action
> calls Win32::GUI::GetOpenFileName(). Unfortunately the "Open File.."
dialog
> box
This PPM is not compatible with your perl version.
Win32-GUI-0.0.502-PPM-5.005 is for a perl 5.005
MSWin32-x86-multi-thread => is a Perl 5.6 or 5.8.
Try to find a PPM for your version.
For Perl 5.6, see at sourceforge :
http://sourceforge.net/project/showfiles.php?group_id=16572&release_id=80848
1. Yes, you can set location with:
-top
-left
-width
-height
or :
-pos => [top, left]
-size => [width, height]
2. You have a grid mamager (Win32::GUI::GridLayout) in Win32::GUI.
see : http://search.cpan.org/src/ACALPINI/Win32-GUI-0.0.558/docs/html/gui.html
Or, you can
Hi,
I have release a new package for add Scintilla control in Win32::GUI.
See more at : http://perso.club-internet.fr/rocherl/Win32GUI.html
(documentation, source code + sample, ppm package for ActivePerl 5.6 & 5.8)
Scintilla is an edit code control with lot of features.
See
> Is there a way to set the default path for the Win32::GUI::GetOpenFileName?
Use -directory => $directory_path option.
Laurent.
Hi,
I build Win32::GUI with ActiveState 5.8 and no error (only warming).
In your link command, comctl32.lib is missing.
Normaly, this library is add by MakeFile.pl with this line :
'LIBS' => ( ($^O eq "cygwin") ? '-lcomctl32' : 'comctl32.lib' ),
Have you an error wit
Hello,
For build, Win32::GUI on win98 :
1) Edit Makefile.pl and edit in sub xs_c { ... }
Replace && between $(PERL) and $(MV) commands by a carriage return and a
tabulation
2) Use 4NT shell ( See trial version : http://www.jpsoft.com/download.htm )
It's support long com
Hi
Good news for you.
I have upload a new version of Win32::GUI::AxWindow.
This version add a new method GetOLE.
This method return a Win32::OLE object on the Hosted ActiveX control.
Now, you can host a webcontrol in a Win32::GUI window and control it via
Win32::OLE.
Win3
Hi,
Theoricly, i think you can have access to html object hierarchy via
WebBrowser.Document property.
But actualy, AxWindow not work with IDispatch property :(
I probably add it in a future release.
Actual solution is to create/manage you HTML document via perl and save it to a
tempory file.
Hi,
3 ideas.
* Win32::GUI::Graphic & Win32::GUI::DC
You can use Graphic and DC for draw yourself the graph.
Graphic have a draw method and DC have SetPixel, MoveTo, LineTo, Circle,
...
* GD::Graph & Win32::GUI::DIBitmap
You can use GD::Graph for build the graph and use Win3
Hi,
> Actualy, AxWindow not handle property with extra paramater.
> Trying to made a new version for handle this.
I put a new version with this new feature.
See at : http://perso.club-internet.fr/rocherl/Win32GUI.html
Laurent.
Hi,
Actualy, AxWindow not handle property with extra paramater.
It's first time, i see kind of property.
Trying to made a new version for handle this.
Laurent.
--- OleView Description ---
[id(0x0041), propget, helpstring("Returns/sets the text contents of an
arbitrary cell (row
Hello,
I have release new version of Win32::GUI::DIBitmap and Win32::GUI::AxWindow.
Win32::GUI::DIBitmap = add new load/save image format and some image
manipulation.
Win32::GUI::AxWindow = Add ActiveX Control Hosting.
See more at : http://perso.club-internet.fr/rocherl/Win32GUI.html
Laurent.
Alex Lee wrote:
> I tried DIBitmap but that did not work nither.
>
> ### code
> use Win32::GUI::DIBitmap;
> my $dib = newFromData Win32::GUI::DIBitmap ($hIcon) or die "no $!";
> ###
If you need use DIBitmap, try with newFromBitmap.
newFromBitmap work with handle like Win32::GUI (See Al
> However, if you create a Perl object and use that to connect the XS stuff,
> you can use the class' destructor, the DESTROY sub. It will get called
upon
> garbage collection when the object goes out of scope or when the program
> terminates.
It's what i do in my first release.
I haven't
Hello,
I have put a new release with some improvement, some doc and add a new
method Release.
See : http://perso.club-internet.fr/rocherl/Win32GUI.html
The Release Method must be call before all the window was destroy. The
best place is in the _Terminate handler. It's necessary for my co
Hello,
I am working on a new package for add ActiveX hosting to Win32::GUI.
I have made some test with Webbrowser (Internet Explorer) and it's work
nice.
I am on Win98Se, ActivePerl56 build 628, Win32::GUI 0.665 and IE 5.5
With this package, you can :
- Create a window wi
Hello,
> hi. i'm having a little bit of a problem compiling win32::gui. i'm running
> activeperl 5.6.1.631 in win98se and using msvc++ 6.
> funny thing, when i perl makefile.pl it does it fine but it brings up
this:
> ...
I have made Win32::GUI on win98se.
I use 4NT shell (see http://www
brary.
See more at : http://perso.club-internet.fr/rocherl/Win32GUI.html
(documentation, source code + sample, ppm package for ActivePerl 5.005 &
5.6)
Laurent ROCHER
Hi,
I have made a package for read/write/display different image file.
You can see some sample in the source zip file.
Win32::GUI::DIBitmap add new reading/writing bitmap formats to Win32::GUI
and some images manipulations (Conversion, Screen capture, ...).
This package uses FreeImage 2.4
>
> I have found a problem in the screen capture fonction.
> It's work only when the display is in 32 bits.
>
OK now, all work.
I have made a new version.
See : http://perso.club-internet.fr/rocherl/Win32GUI.html
Laurent.
- Original Message -
From: paul barker
> I'm trying to produce a 5.6 PPM for this new module, but I am having
trouble
> building the source.
>
> I hve downloaded and extracted both your source and the FreeImage source.
I have
> extracted your files to d:\DIBitmap and the FreeImage files t
://perso.club-internet.fr/rocherl/Win32GUI.html
- small doc
- Source code and sample
- PPM distribution for Perl ActiveState 5.005 only
(If someone can make a ppm distribution for perl 5.6, you can send me the
file by mail.)
Laurent ROCHER.
- Original Message -
From: "Tim K
Hello,
>
> To begin with, is there a common/default/best way of handling Tab Strips?
>
> In one of the sample files the application simply pushed the controls into
> an array for later Show()ing and Hide()ing. That seems okay, but I figured
> I could insert them into a container object, much like
hello
>
> this is my dot plan about Win32::GUI, what I'm doing and what
> I plan to do. please note that everything here may change (without
> further notice) depending on my other activities (namely job and
> 'real life' :-).
>
> it would be kewl if you could 'prioritize' the list based on
> what
1 - 100 of 105 matches
Mail list logo