I'm having a very weird error.
On the form SLX Report Manager View v.752 i get the following error:
"an error occured executing active form script (Systme:SLX Report Manager View).
Error call method AXFormOpen
Variable is undefined: 'mConditionBuilderController'
at line 56, char 5
I have not changed any thing on this form. The only changes i have made is that on a completly different form i'm using the GlobalReportController with the following code:
GlobalReportController.Init Set oCR = GlobalReportController.CrystalReport oCR.Family = "Opportunity" oCR.Name = "View Opp Proposal" oCR.PluginID = "" oCR.Reload
Set oCond = New SLXReportCondition oCond.Table = "viewOppProposal" oCond.Field = "OPPORTUNITYID" oCond.Value = Form.tbOppId.Text
Set oConds = oCR.ReportConditions() oConds.Add oCond
oCR.ReportConditions = oConds
On Error Resume Next GlobalReportController.ExportReportTo "PDF", attachPath
This code works great and exports the report perfectly, but i can't figure out how this will cause the problems on the SLX Report Manager View form.
If anyone can explain this to me and tell me how to fix it, that would be a huge help. |