RE: [win32-gui] RE: [perl-win32-gui-users] The skin module

2006-04-27 Thread Brian Millham
I've now got a ppd created for use with PPM for the Skin module. Unfortunately, my providers site doesn't seem to allow directory browsing, which appears to be required for PPM to work. I've requested that they open a directory for me to allow browsing so I can publish my Skin module via PPM. Fo

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

2006-04-27 Thread Robert May
[EMAIL PROTECTED] wrote: I just wish there was a way to send ENTER key press to a window (an "Edit" class text widget, to be exact) without having to give the window focus. Any ideas? Can you post a WM_CHAR message to the window? Win32::GUI::PostMessage($hwnd, WM_CHAR, VK_RETURN, 0); [WM

Re: [perl-win32-gui-users] Adding controls to tab strip items.

2006-04-27 Thread Brian Fredette
Hi Jeremy, Nice! I've been hoping for something like this. I'll give it a shot. Brian On 4/27/06, Jeremy White <[EMAIL PROTECTED]> wrote: > > > >I've played around with TheGUILoft and was impressed with what it does > for > >the most part. My biggest problem is that it doesn't export win32-g

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

2006-04-27 Thread h254
Hey guys ! thanks for putting me on the right path. you were right ! Win32::GuiTest did the trick. I just wish there was a way to send ENTER key press to a window (an "Edit" class text widget, to be exact) without having to give the window focus. Any ideas? Thanks ! JJ

Re: [perl-win32-gui-users] Adding controls to tab strip items.

2006-04-27 Thread Jeremy White
I've played around with TheGUILoft and was impressed with what it does for the most part. My biggest problem is that it doesn't export win32-gui code. I'd like the option of beging able to do both. The script below converts a .gld file into perl code. The script itself is a bit of a hack...:)

Re: [perl-win32-gui-users] Adding controls to tab strip items.

2006-04-27 Thread Brian Fredette
I've played around with TheGUILoft and was impressed with what it does for the most part. My biggest problem is that it doesn't export win32-gui code. I'd like the option of beging able to do both. On 4/27/06, Plum, Jason <[EMAIL PROTECTED]> wrote: > > Well Brian, TIMTOW :p > > Not that ever

RE: [perl-win32-gui-users] Adding controls to tab strip items.

2006-04-27 Thread Plum, Jason
Well Brian, TIMTOW :p Not that every way is clean, neat and easily objectified (thought I haven't looked into groupbox'ing myself ouside of Johan's GUI-Loft, which I suggest you have a look at [http://www.bahnhof.se/~johanl/perl/Loft/]) so I can't be perfectly sure that such a way is currently in

Re: [perl-win32-gui-users] Adding controls to tab strip items.

2006-04-27 Thread Brian Fredette
Thanks again. I was able to come up with something by simply creating the group box with no text with the example I provided then positioning the radio button on top. This gives me what I need but it's probably not the best way to accomplish it. Brian On 4/27/06, Plum, Jason <[EMAIL PROTECTED]

Re: [perl-win32-gui-users] Adding controls to tab strip items.

2006-04-27 Thread Brian Fredette
What I'm looking to create is a page similar to the tcp/ip properties dialog which has 2 radio buttons. The second button has a group box around it wich when checked enables other controls. I was able to create the visual element by: my $btnStatic = $main_window->AddButton( -name => "btn

Re: [perl-win32-gui-users] Adding controls to tab strip items.

2006-04-27 Thread Brian Fredette
Hi Jason, Thanks for the advice. I was able to get things working with this method. Another unrelated question is there a package to create a 3D type border around a control to visually group off some controls. Brian