[perl-win32-gui-users] Win32::GUI::Resizer
Dealing with moving and resizing stuff when a window is resized is really annoying, not to mention boring. So I created a class to make that easier. That was a lot more fun for some reason :) Anyway, the result is Win32::GUI::Resizer. http://www.bahnhof.se/~johanl/perl/Win32GUI/ Please try it out if you like and let me know what you think. /J -- Johan Lindström, Sourcerer, Boss Casinos Ltd, Antigua [EMAIL PROTECTED]
[perl-win32-gui-users] Win32::Print ?
Dear perl-win32-gui-users, is there already any module for printing out graphical data.. i'm trying to make a little catalog, and to print it out via win32::gui .. but i can't find a solid solution i'm NOT willing to export data to PDF or HTML and afterwards print it. I thought of a solution whereby you could preformat your text & images, and than output it to the printer spool. Although i have no idea to realize it :) I'm basing myself on the system that is being used by Waty Tierry is using in VB 5 or 6. Could we maybe port this to perl win32::gui or make use of his system ? as reference; the adress of the printpreview OCX.. http://www.vbdiamond.com/Products/PrintPreview/PrintPreview.asp If you have any questions, whatsoever, please feel free to contact us. Best regards, Danny Zak mailto:[EMAIL PROTECTED] co-ceo Euro-Pictures/belGOnet.com Princesse Elisabeth Square 9/11 1030 Brussels Belgium Tel : +32-(0)2-215.67.65 Fax : +32-(0)2-215.66.65
[perl-win32-gui-users] RichEdit_Change
Hi folks, I'd like to share a solution to a problem that has been driving me nuts for a while. I changed a Textfield control to a RichEdit and it would not give me the _Change event. I dug in the GUI.xs and could find nothing wrong. I finally tracked it down to the eventmask being zero, which means that the notification messages don't come to the GUI message loop in the first place. The workaround is to do $MainWindow->myRichEditField->SendMessage (0x445, 0, 1); that sends EM_SETEVENTMASK (0x445) to the control with the ENM_CHANGE bit set. Hope that spares somebody else a headache. Have fun Harald