[perl-win32-gui-users] Version 0.1 of the Skin module

2006-04-10 Thread Brian Millham
Hi all, I have a basic module for creating skins with Win32::GUI ready to go. For now, it's not Win32::GUI::Skin, just skin.pm. To try this out, just save all 4 files to a directory, and give it a try. Check out the code in skin.pl. Other than painting the graphics, it knows nothing about the s

Re: [win32-gui] RE: [perl-win32-gui-users] accessing contents of a text box of another app

2006-04-10 Thread Robert May
Jeremy White wrote: Getting the handle will be the "hard" part. There are a couple of functions in Win32::GUI::Test that should help with that. I think you mean Win32::GuiTest Regards, Rob.

Re: [win32-gui] [perl-win32-gui-users] Examples needed.

2006-04-10 Thread Robert May
Brian Fredette wrote: Greetings all, I'm kinda new to win32::gui programming and need to develop a frontend which is similar to windows explorer. I would like to have a scrollable "pane" on the right hand side which contains lists of checkboxes. I have looked through the mdi packages and s

Re: [win32-gui] [perl-win32-gui-users] Disabling default action for LWIN/RWIN?

2006-04-10 Thread Robert May
Steve Loughran wrote: Hi all Is there a way to disable the LWIN/RWIN default action of popping up the windows start menu? (and how about enabling them again afterwards?) Any pointers would be helpful. Many thanks in advance. Steve I believe that if you set up an application-level accelerat

Re: [win32-gui] [perl-win32-gui-users] how to make a MessageBox the top most dialog ?

2006-04-10 Thread Robert May
oohayf oohayl wrote: hello, is there a way to make a MessageBox the top most dialog while looking for some win32 window ? ... @error=WaitWindowLike( $parent, $title, $class); if ([EMAIL PROTECTED]) { $MainWin->MessageBox ("Error", "MsgTitle", 0+48); # how to make this message the top most

RE: [perl-win32-gui-users] SWF win32 GUI

2006-04-10 Thread Plum, Jason
Carol, AxWindow would indeed be your best choice. Either via embedded IE/Moz or the direct linking to the Macromedia. Jason P. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of carollyne courtney Sent: Tuesday, April 04, 2006 3:24 PM To: perl-win32-gui-use

RE: [perl-win32-gui-users] how to make a MessageBox the top most dialog ?

2006-04-10 Thread Peter Eisengrein
> is there a way to make a MessageBox the top most dialog while looking for > some win32 window ? When you construct $MainWin you can use: -topmost => 1, Or if you just want to bring it to the foreground at somepoint you can also use: $MainWin->SetForegroundWindow();