Re: [perl-win32-gui-users] wait for user input

2001-07-16 Thread Form1
In a message dated 7/16/01 4:06:28 PM Eastern Daylight Time, [EMAIL PROTECTED] writes: > How can I temporarily halt the main Dialog() from accepting other events? I > have an event that opens a dialog box (an alert) that I bring focus to, > disable the other windows, etc. I want to wait for user

Re: [perl-win32-gui-users] Drag-n-drop (was: Show In Taskbar)

2001-05-09 Thread Form1
Eh, no... I was actually thinking pure SetWindowCapture stuff. Haven't done it in the while, but that's how we used to do it in VB. Dave In a message dated Wed, 9 May 2001 12:43:06 AM Eastern Daylight Time, Johan Lindstrom <[EMAIL PROTECTED]> writes: << Dave wrote: >In all likelihood, your bes

Re: [perl-win32-gui-users] Win32::Print ?

2001-05-07 Thread Form1
Yup, probably a 95% chance that implementing OCX support is way too much trouble for anyone to bother with in the immediate future... Your best bet is to find a dll that does the equivilant. Dave, the ever-wary of COM. << Danny wrote: > I see.. well the system that is being used in the OCX

Re: [perl-win32-gui-users] Drag-n-drop (was: Show In Taskbar)

2001-05-07 Thread Form1
In all likelihood, your best bet is to subclass the window you want it to accept the files, then filter for the appropriate message. I can dig up some MSKB articles on it if you'd like. Dave In a message dated Sun, 6 May 2001 11:47:29 PM Eastern Daylight Time, Johan Lindstrom <[EMAIL PROTECTED

Re: [perl-win32-gui-users] Drag-n-drop (was: Show In Taskbar)

2001-05-04 Thread Form1
This is the 128 message: #define WS_EX_TOOLWINDOW0x0080L (This is documented in the Win32 Programmer's Reference help file and in the winuser.h file from Visual C++) Yup. Didn't have my VC++ install at work, though... > > > And this would be _so_ neat to use: > > WS_EX_ACCEPTFILE

Re: [perl-win32-gui-users] Show In Taskbar

2001-05-04 Thread Form1
Alrighty, I'll take a look at that. With regards to the other bit, there are two types of window styles: regular, win3.1 era, and extended, i.e. 95+. Both affect how the window is drawn in different ways. Try this: $window->SetWindowLong(-20, 128); #-20 = GWL_EXSTYLE. 128 = WS_EX_sometoolbarco

[perl-win32-gui-users] Show In Taskbar

2001-05-04 Thread Form1
I'm trying to get a window to not display in the taskbar, and I'm unable to do so without negative side effects. (i.e. the window not properly redrawing, or the window becoming a toolbar-esque window.) Anyone know how I could get around this? I've been using, of course, SetWindowLong with the ap