RE: Re: [DUG]: Bring an App to the front

2000-11-02 Thread Jason Coley
: Wednesday, 1 November 2000 8:36 p.m. To: Multiple recipients of list delphi Subject: Re: [DUG]: Bring an App to the front Jason Coley wrote: Is there a way to bring an Apps window to the front, I have an OLE handle to a window (Word) and I want to bring that window to the front

RE: Re: [DUG]: Bring an App to the front

2000-11-02 Thread Patrick Dunford
try WordApp.Activate -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jason Coley Sent: Thursday, 2 November 2000 23:11 To: Multiple recipients of list delphi Subject: RE: Re: [DUG]: Bring an App to the front Thanks for that code, but how do I

RE: Re: [DUG]: Bring an App to the front

2000-11-02 Thread Cheng Wei
WordApp.Visible := True; WordApp.Activate; Regards Cheng -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jason Coley Sent: Thursday, 2 November 2000 23:11 To: Multiple recipients of list delphi Subject: RE: Re: [DUG]: Bring an App to the front Thanks

RE: Re: [DUG]: Bring an App to the front

2000-11-02 Thread Jason Coley
Title: RE: Re: [DUG]: Bring an App to the front Thanks Chen, how long has the Activate procedure been in Word, 95, 97 or 2000? Jason -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Cheng Wei Sent: Friday, 3 November 2000 8:04 a.m. To: Multiple

RE: [DUG]: Bring an App to the front

2000-10-31 Thread Patrick Dunford
Title: Bring an App to the front SetForegroundWindow is the call that you make. Note this may not work as expected in Windows 98/2000/ME because in the later versions of Windows, the window currently receiving input cannot be interrupted. -Original Message-From: [EMAIL PROTECTED]

RE: [DUG]: Bring an App to the front

2000-10-31 Thread Patrick Dunford
Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Corey Murtagh Sent: Wednesday, 1 November 2000 20:36 To: Multiple recipients of list delphi Subject: Re: [DUG]: Bring an App to the front Jason Coley wrote: Is there a way to bring an Apps window to the front, I have