Guides/Toolbar-Buttons.md
... ...
@@ -433,4 +433,25 @@ The Hide Help button toggles the side help panel.TO disable it, set ShowHelpButt
433 433
AdHocSettings.ShowHelpButton = false;
434 434
```
435 435
436
-##Tabs
... ...
\ No newline at end of file
0
+##Tabs
1
+
2
+###Data Sources
3
+
4
+![Data Sources Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/dstab.png)
5
+
6
+The Data Sources tabs allow report designers to add/remove data sources for a report. To disable it, set ShowDataSourcesTab to false.
7
+
8
+```csharp
9
+AdHocSettings.ShowDataSourcesTab = false;
10
+```
11
+
12
+###Fields
13
+
14
+![Fields Tab](http://wiki.izenda.us/Guides/Toolbar-Buttons/fields.png)
15
+
16
+The fields tab allows the user to add or modify the fields reported on in a report, the functions used on them, the descriptions, and the formatting of the field through the report designer. To disable it, set ShowFieldsTab to false.
17
+
18
+```csharp
19
+AdHocSettings.ShowFieldsTab = false;
20
+```
21
+