I was trying anything at that point, I have put the same code on the Load event, Initialize event, even in the RefreshRepot event ...nothing.
Whoops...I just caught my mystake. I dimensioned a new instance of my report "Dim Report as New CustOrder" and then forgot to reference it when I cast it back to myTextObject.
(wrong) myTextObject = CType(CustOrder1.ReportDefinition...
(right) myTextObject = CType(Report.ReportDefinition...
I've only been looking at this code for a day and a half now....geeez
Edited by MarkM - 01 May 2007 at 11:03am