OK, here's one way to do it --
In Hannani_Test, add a module (or use an existing module if there is one).
Add this code --
Public Property Get ReportForm() as frmCreate_Hannani_Report
Set ReportForm = new frmCreate_Hannani_Report
End Property
Then in the calling project, use --
Sub Test()
With Hannani_Test.ReportForm
.txtReportDateMonth = "02"
:
.Show
End with
End Sub
> Hi,
>
[quoted text clipped - 5 lines]
>
> Thank you!
singeredel - 22 Feb 2005 23:41 GMT
Thank you SO MUCH for answering so promptly. It finally works! The only
change I had to make to get it to run was to change Hannani_Test.ReportForm
to just Hannani.ReportForm. (from referencing the Template to referencing the
Project)
A hundred thanks again!
> OK, here's one way to do it --
>
[quoted text clipped - 25 lines]
> >
> > Thank you!