Created
November 15, 2016 12:24
-
-
Save bjoerntx/c54f905b9e8abb236fe54269c86670d0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// attach events to monitor available merge fields and merge blocks | |
dsManager.PossibleMergeFieldColumnsChanged += | |
DsManager_PossibleMergeFieldColumnsChanged; | |
dsManager.PossibleMergeBlockTablesChanged += | |
DsManager_PossibleMergeBlockTablesChanged; | |
// attach the available tables to the combobox | |
cbMasterTable.DataSource = | |
dsManager.DataTables.ToList<DataTableInfo>(); | |
cbMasterTable.DisplayMember = "TableName"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment