Skip to content

Commit 79bce63

Browse files
committed
Created context menu to allow JSON file to be exported
- Context menu on right click in Table Mapping with basic JSON export - Minor tweaks to insert, update and delete for the three datagrids for testing purposes. VERSION NOT FIXED YET
1 parent 7f16bfe commit 79bce63

File tree

5 files changed

+179
-46
lines changed

5 files changed

+179
-46
lines changed

TEAM/Form_Main.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

TEAM/Form_Main.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ public partial class FormMain : FormBase
1717
{
1818
public FormMain()
1919
{
20+
// Set the version of the build for everything
21+
string versionNumberforTeamApplication = "v1.5.2.1";
22+
2023
//Placeholder for the error handling
2124
var errorMessage = new StringBuilder();
2225
errorMessage.AppendLine("Error were detected:");
@@ -26,6 +29,7 @@ public FormMain()
2629
var errorCounter = 0;
2730

2831
InitializeComponent();
32+
this.Text = "TEAM - Taxonomy for ETL Automation Metadata " + versionNumberforTeamApplication;
2933

3034
//Retrieving the configuration strings from the global variables (configuration settings)
3135
var configurationSettings = new ConfigurationSettings();
@@ -42,7 +46,7 @@ public FormMain()
4246

4347
//Startup information
4448
richTextBoxInformation.Text = "Application initialised - the Taxonomy of ETL Automation Metadata (TEAM). \r\n";
45-
richTextBoxInformation.AppendText("Version 1.5.1 \r\n\r\n");
49+
richTextBoxInformation.AppendText("Version "+versionNumberforTeamApplication+"\r\n\r\n");
4650

4751
richTextBoxInformation.AppendText("Source code on Github: https://github.com/RoelantVos/TEAM \r\n\r\n");
4852

TEAM/Form_Manage_Metadata.Designer.cs

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)