Frank Pacher
Frank Pacher
About
- Username
- Frank Pacher
- Joined
- Visits
- 4
- Last Active
- Roles
- Members
Comments
-
I'll answer myself again face-smile The solution is: Dim _obj As ObjectCollection = _Report.ForEachAllConvectedObjects(_Report) For Each _item As Object In _obj If _item.ClassName = "TextObject" Then Dim _LangId As Int16 = 0 …
-
AlexTZ wrote: » Hello, Use the following code to add a new tab to the preview control: report.Load(...) report.Prepare() previewControl1.AddTab(report, "tab title") Hello AlexTZ, that was what I was looking for. Thanks Frank