Newsgroups : Borland : borland.public.delphi.nativeapi.win32 : 2005 Mar : Forms within DLL
| Subject: | Forms within DLL |
| Posted by: | "Monzer George Yazigi" (monzer_yazigi@nospam.hotmail.com) |
| Date: | Fri, 4 Mar 2005 01:40:12 |
Hi
I'm writing an application which calls my custom made own dialogs. The
dialogs are placed in a DLL.
When calling the dialog from within a DLL, I need to create the dialog
form:
Form1:=TForm1.Create();
What should be used as a param for Create Method. do I need to pass
the parent form from the main application? can I pass the form Handle?
if yes, how to do so?
Regards