edit on preview form, but the print result is not same...
i want to change the print value on the preview form.
when i close the editor form, the preview control display the right result. that's what i want.
but the print result don't change anymore...
        private void TxtObj_Click(object sender, EventArgs e)
        {
            TextObject curTextObject = sender as TextObject;
            if (curTextObject == null) return;
            curTextObject.InvokeEditor();
            curTextObject.SaveState();
            curTextObject.SaveStyle();
            InitModel.report.Preview.Refresh();
        }
when i close the editor form, the preview control display the right result. that's what i want.
but the print result don't change anymore...
Comments
but it's too complex...
what can i do?