Re: [DUG]: Forms in DLL (again?)

2001-08-06 Thread Ross Levis
Not if you activate it with ShowModal as Alex mentioned. Ross. Patrick Dunford wrote: What you have described occurs with all dialog boxes, DLL or not. Press Alt-Tab to get back to where you want to be. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On

RE: [DUG]: Forms in DLL (again?)

2001-08-06 Thread Patrick Dunford
recipients of list delphi Subject: Re: [DUG]: Forms in DLL (again?) Not if you activate it with ShowModal as Alex mentioned. Ross. Patrick Dunford wrote: What you have described occurs with all dialog boxes, DLL or not. Press Alt-Tab to get back to where you want

Re: [DUG]: Forms in DLL (again?)

2001-08-05 Thread Robert Martin
Pass the calling application TApplication in to the DLL. In the DLL store its TApplication and then point applicaton to the TApplicatoin passed from the main program. When your function is complete re assign the DLLs applicatoin back to the one stored. This will make your DLL and main app

RE: [DUG]: Forms in DLL (again?)

2001-08-05 Thread Patrick Dunford
What you have described occurs with all dialog boxes, DLL or not. Press Alt-Tab to get back to where you want to be. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Alex Kouznetsov Sent: Monday, 6 August 2001 16:02 To: Multiple recipients of list

Re: [DUG]: Forms in DLL (again?)

2001-08-05 Thread Alex Kouznetsov
Thanks Robert this seems to do the trick. Regards Alex - Original Message - From: Robert Martin [EMAIL PROTECTED] To: Multiple recipients of list delphi [EMAIL PROTECTED] Sent: Monday, 6 August 2001 2:31 Subject: Re: [DUG]: Forms in DLL (again?) Pass the calling application