RE: [perl-win32-gui-users] Interfacing DLLs

2004-08-31 Thread Dave Crawford
-Original Message- Can someone tell me how I could go about extracting function prototype information and/or class ID information from DLLs? === Take a look at the OLE-Browser that comes with AS Perl, or install the ovi386.exe package from Microsoft. -Dave

Re: [perl-win32-gui-users] Moving a DialogBox to the forground

2003-03-14 Thread Dave Crawford
I had just realized I had misnamed the owner, and was posting that I located my error. Thanks for the response! -Dave - Original Message - From: "Laurent ROCHER" <[EMAIL PROTECTED]> To: "Win32GUI" Sent: Friday, March 14, 2003 1:27 PM Subject: Re: [perl-win32-gui-users] Moving a DialogBox

Re: [perl-win32-gui-users] Moving a DialogBox to the forground

2003-03-14 Thread Dave Crawford
appearing in the foreground. I tried adding the -topmost => 1 option to the GetOpenFileName() object but it doesn't appear to honor that setting. -Dave - Original Message - From: "Peter Eisengrein" <[EMAIL PROTECTED]> To: "'Dave Crawford'" &l

Re: [perl-win32-gui-users] Moving a DialogBox to the forground

2003-03-14 Thread Dave Crawford
That did the trick, thanks! Apparently my RTFM skills need polishing. -Dave - Original Message - From: "Peter Eisengrein" <[EMAIL PROTECTED]> To: "'Dave Crawford'" <[EMAIL PROTECTED]>; "Win32GUI" ; <[EMAIL PROTECTED]> Sent: Fr

Re: [perl-win32-gui-users] Moving a DialogBox to the forground

2003-03-14 Thread Dave Crawford
quent calls to redisplay my DialogBox properly displays it in the foreground. -Dave - Original Message - From: <[EMAIL PROTECTED]> To: "Dave Crawford" <[EMAIL PROTECTED]> Sent: Friday, March 14, 2003 10:46 AM Subject: Re: [perl-win32-gui-users] Moving a DialogBox

[perl-win32-gui-users] Moving a DialogBox to the forground

2003-03-14 Thread Dave Crawford
I have a script that displays a DialogBox when triggered by a 3rd party application. However, I'm having trouble getting the DialogBox to appear in the foreground when displayed. I tried calling SetForegroundWindow() which only causes my application's icon to blink on the task bar. Furthermore, cli

Re: [perl-win32-gui-users] COM port logger

2003-02-19 Thread crawford
portmon from sysinternals.com -Dave

[perl-win32-gui-users] Win32::gui and Perl 5.8/PDK

2003-01-13 Thread Dave Crawford
I contacted ActiveState about an issue that I'm having while attempting to use Win32::GUI from inside an PerlCtrl created .dll component. Jan Dubois responded that the issue lies within Win32::GUI. I've included his reply below and was curious if this is something that could be fixed in a future r

[perl-win32-gui-users] Win32::GUI from inside a control

2002-12-16 Thread Dave Crawford
Using PerlCtrl I've created an ActiveX Control that I'm seeing some issues with. When I call my control via a VBScript it functions as expected and the DialogBox displays fine. However, when the 3rd party application that I wrote the control for calls the control, the DialogBox never appears. I

[perl-win32-gui-users] Background colors

2002-12-13 Thread Dave Crawford
I'm looking for a way to set the background color for the text field on a Groupbox, but upon browsing the source code I see that Groupbox doesn't take a background (or foreground) option. Is there a workaround, using a font object perhaps? Or as a last resort is there a way to set the background

[perl-win32-gui-users] Re: Tabbing between controls

2002-04-25 Thread John Crawford
>> -tabstop => 1. pretty sure it only works with a gui::dialog. >> sorry. make that it only works with a window, not a dialog. Many thanks for prompt response. Unfortunately, I don't notice any effect either with a window or a dialog (and I'd particularly like it to work with a dialog). I'm using

[perl-win32-gui-users] Tabbing between controls

2002-04-25 Thread John Crawford
What's the secret of allowing tabbing between controls? -style => WS_TABSTOP doesn't seem to have any effect. jmc