Skip to content

Commit

Permalink
fixed reports
Browse files Browse the repository at this point in the history
  • Loading branch information
DanWBR committed May 22, 2024
1 parent aff4633 commit eed7fe9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DWSIM.UnitOperations/EditingForms/EditingForm_Column.vb
Original file line number Diff line number Diff line change
Expand Up @@ -816,7 +816,7 @@ Public Class EditingForm_Column
fr2 = New ReportViewer()
fr2.HideOnClose = True
End If
fr2.TextBox1.Text = SimObject.ColumnSolverConvergenceReport
fr2.TextBox1.Text = SimObject.ColumnSolverConvergenceReport.Replace(vbCr, vbCrLf).Replace(vbLf, vbCrLf)
fr2.Text = SimObject.GraphicObject.Tag + ": Convergence Report"
fr2.TabText = SimObject.GraphicObject.Tag + ": Convergence Report"
fr2.TextBox1.DeselectAll()
Expand All @@ -834,7 +834,7 @@ Public Class EditingForm_Column
fr = New ReportViewer()
fr.HideOnClose = True
End If
fr.TextBox1.Text = SimObject.ColumnPropertiesProfile
fr.TextBox1.Text = SimObject.ColumnPropertiesProfile.Replace(vbCr, vbCrLf).Replace(vbLf, vbCrLf)
fr.Text = SimObject.GraphicObject.Tag + ": Properties Profile"
fr.TabText = SimObject.GraphicObject.Tag + ": Properties Profile"
fr.TextBox1.DeselectAll()
Expand Down

0 comments on commit eed7fe9

Please sign in to comment.