wsyeager
Centurion
I have child forms that act as a UI to the user (from within the MDI app), runs some process, then displays another separate child form to the user (from within the parent MDI main form) displaying the results of a Crystal Report using the following code:
Dim frmObject As New frmAdHocISPProvisioningReport(DsProvOrderSum1)
frmObject.MdiParent = Me.MdiParent
frmObject.Show()
When using the same code above, and trying to run a similiar report directly from the main form itself (instead of another child form acting as a UI), the report comes up outside of the main parent form not as its child. Why????????
Dim frmObject As New frmAdHocISPProvisioningReport(DsProvOrderSum1)
frmObject.MdiParent = Me.MdiParent
frmObject.Show()
When using the same code above, and trying to run a similiar report directly from the main form itself (instead of another child form acting as a UI), the report comes up outside of the main parent form not as its child. Why????????