Re: [perl-win32-gui] Need Help from Winamp Users

2000-11-09 Thread Chuck . Hirstius
Todd, The problem was finding a way to determine the volume of winamp at startup so I could position my volume slider accordingly. There was no message to retrieve it, and I thought just forcing it to a certain volume was a cheesy fix - nothing like setting it low, then restarting and it's bla

Re: [perl-win32-gui] Need Help from Winamp Users

2000-11-09 Thread Chuck . Hirstius
cc: (bcc: Chuck Hirstius/Corp/Walgreens) Subject: [perl-win32-gui] Need H

[perl-win32-gui] Transparent BMPs

2000-04-26 Thread Chuck . Hirstius
Is there way to make buttons or other Win32::GUI::Bitmap objects have transparency? I don't want the user seeing a grey background on my buttons if their window colors are green. Chuck

Re: [perl-win32-gui] Popup window moving behind origninal

2000-03-24 Thread Chuck . Hirstius
>What about applying a certain window style to your pop-up window, so that it >can't lose focus? I'm trying to locate info now on window styles from MSDN >(for other reasons) since the gui-docs dont mention window styles well. >Just a suggestion :-) >Ian. >> When I click a button and create

[perl-win32-gui] Capturing keystrokes sent to a window

2000-03-22 Thread Chuck . Hirstius
is there a way to capture a hotkey like Ctrl-Alt-A in a window? I'm trying to add an 'advanced' mode to a Win32::GUI app, and I'd like it to only be accessable from a certain keystroke, any ideas? Chuck

[perl-win32-gui] Changing text color 'inline'

2000-03-16 Thread Chuck . Hirstius
Does anyone know of a way to change the color of formatting fo text 'inline'? Such as: my $text = "This is my new text"; $mw->SomeLabel->Change( -text => $text ); can you somehow do anything like: my $text = "This is my new text"; # ok, ok, I KNOW that's HTML! $mw->SomeLabel->Change( -tex

[perl-win32-gui] Still looking for a replacement for Frames

2000-03-14 Thread Chuck . Hirstius
Under Tk, I had a program that displayed 'pages' based on user selections. Very much like a tabstrip, but I DON'T want a tabstrip, what I want to do is replicate the ability of Tk to make a frame, pack it with widgets, and then display, or hide the frame (displaying and hiding the widgets for e

Re: [perl-win32-gui] Changing the Icon in the Top Left corner of a Window

2000-03-11 Thread Chuck Hirstius
gah! I meant ChangeIcon! and ChangeSmallIcon! $my_main_window->ChangeIcon($my_icon); $my_main_window->ChangeSmallIcon($my_icon); sorry about that!! Chuck - Original Message - From: "webmaster" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, March 11, 2000 6:25 AM Subject

Re: [perl-win32-gui] Changing the Icon in the Top Left corner of a Window

2000-03-11 Thread Chuck Hirstius
This is untested but should give you a good idea of what to do... $my_icon = new Win32::GUI::Icon("c:\\path\\to\\my\\icon.ico"); create your main window, then... $my_main_window->SetIcon($my_icon); I believe that should do it, HTH good luck! Chuck - Original Message - From: "webmast

[perl-win32-gui] A few Simple Questions about Win32::GUI

2000-02-17 Thread Chuck Hirstius
Well, at least I HOPE they are simple! I am "porting" an app I did in Tk, over to Win32::GUI, it's basically a ground up re-write, and I've been looking for an excuse to learn Win32::GUI, but I've run into a few problems. #1 How can I bind a keystroke to a Widget in Win32::GUI? Such as a tab o

[perl-win32-gui] Spreadsheets?

1999-10-18 Thread Chuck Hirstius
I am new to the list, and VERY new to Win32-gui.  I have worked with Tk, so some of the stuff "looks" similar, but I have one big question.  After sorting through the archives there was a thread about tables, grids, etc.  And I saw the GridLayout module information there.  My questions is th