e943a9f79a86dbd182297bd62614f47dcbd9b0e2
FAQ/ProcessDataSet.md
| ... | ... | @@ -29,7 +29,7 @@ Without any post-processing we have the following report: |
| 29 | 29 | |
| 30 | 30 | Now let's add some extra code to the CustomAdHocConfig class: |
| 31 | 31 | |
| 32 | -###C♯ |
|
| 32 | +C♯: |
|
| 33 | 33 | |
| 34 | 34 | ```csharp |
| 35 | 35 | public override void ProcessDataSet(DataSet ds, string reportPart) |
| ... | ... | @@ -55,7 +55,7 @@ public override void ProcessDataSet(DataSet ds, string reportPart) |
| 55 | 55 | } |
| 56 | 56 | ``` |
| 57 | 57 | |
| 58 | -###VB.NET |
|
| 58 | +VB.NET: |
|
| 59 | 59 | |
| 60 | 60 | ```visualbasic |
| 61 | 61 | Public Overrides Sub ProcessDataSet(ByVal ds As DataSet, ByVal reportPart As String) |
| ... | ... | @@ -115,7 +115,7 @@ private static DateTime GetLocalTime(DateTime utcTime) |
| 115 | 115 | } |
| 116 | 116 | ``` |
| 117 | 117 | |
| 118 | -###VB.NET: |
|
| 118 | +VB.NET: |
|
| 119 | 119 | |
| 120 | 120 | ```visualbasic |
| 121 | 121 | Public Overrides Sub ProcessDataSet(ds As Data.DataSet, reportPart As String) |
| ... | ... | @@ -175,7 +175,7 @@ public override void ProcessDataSet(DataSet ds, string reportPart) |
| 175 | 175 | |
| 176 | 176 | Due to the nature of the way the bulk CSV export runs, the above methods will not work for this type of export. In order to handle bulk CSV data, use the ProcessDataRow override instead. |
| 177 | 177 | |
| 178 | -##Example: Using post-processing |
|
| 178 | +###Example: Using post-processing |
|
| 179 | 179 | |
| 180 | 180 | C♯: |
| 181 | 181 |