Re: [perl-win32-gui-users] Timer not being fired when using threads

2007-08-02 Thread Brian Fredette
Hi Rob, Thanks for the explanation. Now that you mentioned it I recall reading somewhere OEM versus NEM. Guess I forgot about that. Thats what I get for using old code without deeper reading. Thanks again. Brian On 7/31/07, Robert May <[EMAIL PROTECTED]> wrote: > > On 31/

[perl-win32-gui-users] Timer not being fired when using threads

2007-07-30 Thread Brian Fredette
:GUI::ProgressBar::SetPos($t1_objHandle, $ctr); $ctr++; $ctr = 0 if $ctr > 99; } select(undef, undef, undef, 0.01); } } Child 2 sub Thread2{ my $ctr = 1; while( $ts2_run != -1 ){ # die when semaphore says so. if( $ts2_run == 1 && defined($t1_objHandle) ){ #only create

[perl-win32-gui-users] Trouble setting the focus in a ListView

2007-01-03 Thread Brian Fredette
All, How do I set the focus to a particular item in a ListView once the ListView receives the focus? So far I have: #! perl use Win32::GUI; my %roles = ("r1" => "role 1", "r2" => "role 2", "r3" => "role 3", "r4" => "role 4", "r5" => "role 5", ); # Create Main Window my $Window = new Win32::GUI

Re: [perl-win32-gui-users] [win32-gui] Possible to change default button in DialogBox

2007-01-03 Thread Brian Fredette
Hi Rob, Thanks for the pointers. I was able to get this working by using btnTest->Change(-default=>1). On 1/2/07, Robert May <[EMAIL PROTECTED]> wrote: Brian Fredette wrote: > Is it possible to change the default button in a window created with > DialogBox? Yes, give th

[perl-win32-gui-users] Possible to change default button in DialogBox

2007-01-02 Thread Brian Fredette
All, Is it possible to change the default button in a window created with DialogBox? Thanks in advance. Brian

Re: [win32-gui] [perl-win32-gui-users] Request for control or workaround.

2006-05-03 Thread Brian Fredette
Hi Rob, Thanks for all your hard work. I'll take a look at things and see what I can come up with. Brian On 5/3/06, Robert May <[EMAIL PROTECTED]> wrote: Brian Fredette wrote: > Done ... tracker number 1480738. Thanks. No promises when I'll get around to looking a

Re: [win32-gui] [perl-win32-gui-users] Request for control or workaround.

2006-05-02 Thread Brian Fredette
Hi Rob, If you want it to move up my priority list, then raise a feature request through the sourceforge site. Done ... tracker number 1480738. Now how can I help :-) Brian

Re: [win32-gui] [perl-win32-gui-users] Request for control or workaround.

2006-05-02 Thread Brian Fredette
Hi Robert, Thanks for the reply. I'll head down the avenue of simple in this case :-). How far along (if at all) is the IP Address control? I wouldn't mind playing around with whatever you have. Brian On 5/2/06, Robert May <[EMAIL PROTECTED]> wrote: Brian Fredette wrote:

[perl-win32-gui-users] Request for control or workaround.

2006-05-02 Thread Brian Fredette
Hi all, An application I'm creating has a need to obtain IP address information from a user. I'd like to be able to setup to screen to look similar to the windows tcp/ip properties panel. The ip address text boxes on that screen are different in that they seem to have embedded .'s. Is there al

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: [perl-win32-gui-users] Adding controls to tab strip items.

2006-04-27 Thread Brian Fredette
sure that such a way is currently in widespread use. > > Jason P. > > -- > *From:* [EMAIL PROTECTED] [mailto: > [EMAIL PROTECTED] *On Behalf Of *Brian > Fredette > *Sent:* Thursday, April 27, 2006 9:41 AM > > *To:* perl-win32-gui-users@list

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

2006-04-27 Thread Brian Fredette
ROTECTED]> wrote: > > [off list] > I'm a bit busy atm but will try to whip you up an answer asap, if Jez or > Rob doesnt get to it first. > > -- > *From:* [EMAIL PROTECTED] [mailto: > [EMAIL PROTECTED] *On Behalf Of *Brian > Fredette

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

2006-04-27 Thread Brian Fredette
-name => "btnStatic", -pos => [30,130], -text => "Use the following IP Address:", -pushstyle => WS_CHILD | WS_VISIBLE | 7, # GroupBox ); This gives me the visual element but using -pushstyle with AddRadioButton causes the radio button to disappea

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

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

2006-04-26 Thread Brian Fredette
Hi all, Here's another (probably dumb) newbie question. How do I add controls to a tab strip item? Logically it seems I would have to assign a parent to the control I'm creating ... but that doesn't seem to work: use Win32::GUI; my $main_window=new Win32::GUI::Window( -name=>"main_wind

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

2006-04-12 Thread Brian Fredette
ol is 'working' and 'not > working' then consider using the $widget->UserData() method. > > Jason P. > > ------ > *From:* [EMAIL PROTECTED] [mailto: > [EMAIL PROTECTED] *On Behalf Of *Brian > Fredette > *Sent:* Wednesday, April 12

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

2006-04-12 Thread Brian Fredette
ow, I can't display the whole list. So my question ... is there a way to disable the list (either entirely or by item) and still keep it scrollable? Do I have to setup a routine to check the state of the checkbox and always keep it checked? Brian On 4/10/06, Robert May <[EMAIL PROTEC

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

2006-04-07 Thread Brian Fredette
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 suspect i need some flavor of

Re: [win32gui] [perl-win32-gui-users] Continued Window Background Color Problems

2005-08-22 Thread Brian Fredette
Hi Rob, Thanks for the clarification. Regards, Brian On 8/22/05, Robert May <[EMAIL PROTECTED]> wrote: > Brian Fredette wrote: > > I read in the group there was a bug submitted regarding the setting of > > window background colors > > (http://sourceforge.net/tracke

Re: [perl-win32-gui-users] Continued Window Background Color Problems]

2005-08-22 Thread Brian Fredette
TED]> wrote: > I apologize for the format, my mail server decided to amazingly drop the > postmaster address for a couple of hours. > Jason P. wrote: > > > Brian Fredette wrote: > > > >> Greetings all. > >> > >> I read in the group there was a bug

[perl-win32-gui-users] Continued Window Background Color Problems

2005-08-21 Thread Brian Fredette
Greetings all. I read in the group there was a bug submitted regarding the setting of window background colors (http://sourceforge.net/tracker/index.php?func=detail&aid=1236053&group_id=16572&atid=116572) I'm still having this problem but the bug tracker says the problem has been fixed. What do