Click here to Skip to main content
Click here to Skip to main content
Articles » Database » Database » SQL » Downloads
 

SQL XML Documentation

By , 29 Feb 2008
 
JocysComSqlScriptsGenerator.zip
DatabaseToXml
bin
Debug
JocysCom.Sql.DatabaseToXml.exe
JocysCom.Sql.DatabaseToXml.vshost.exe
JocysCom.Sql.DatabaseToXml.vshost.exe.manifest
JocysCom.Sql.XmlDocumentation.dll
JocysCom.Sql.DatabaseToXml.csproj.user
Properties
Resources
SQL Scripts Generator.suo
WinApp
bin
Debug
Interop.ADODB.dll
Interop.CDO.dll
JocysCom.ClassLibrary.dll
JocysCom.Sql.ScriptsGenerator.exe
JocysCom.Sql.ScriptsGenerator.vshost.exe
JocysCom.Sql.ScriptsGenerator.vshost.exe.manifest
JocysCom.Sql.XmlDocumentation.dll
Microsoft.Data.ConnectionUI.Dialog.dll
Microsoft.Data.ConnectionUI.dll
Microsoft.SqlServer.ConnectionInfo.dll
Microsoft.SqlServer.SqlEnum.dll
Controls
GenerateActionScripts
Jocys.com SQL Scripts Generator.csproj.user
Properties
Settings.settings
XmlDocumentation
bin
Debug
JocysCom.Sql.XmlDocumentation.dll
JocysCom.Sql.XmlDocumentation.csproj.user
Properties
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace JocysCom.Sql.ScriptsGenerator
{
	public partial class MainForm : Form
	{
		public MainForm()
		{
			InitializeComponent();
		}


		public struct TabPages
		{
			public static TabPage GenerateDataBaseScripts;
			public static TabPage GenerateActionScripts;
			public static TabPage ProcedureHeaders;
			public static TabPage XmlCommentsExtractTest;
		}

		public struct TabControls
		{
			public static Controls.GenerateDataBaseScripts GenerateDataBaseScripts;
			public static Controls.GenerateActionScripts GenerateActionScripts;
			public static Controls.ProcedureHeaders ProcedureHeaders;
			public static Controls.XmlCommentsExtractTest XmlCommentsExtractTest;
		}

		private void MainForm_Load(object sender, EventArgs e)
		{
			//-------------------------------------------------
			TabControls.GenerateActionScripts = new Controls.GenerateActionScripts();
			TabControls.GenerateActionScripts.Dock = System.Windows.Forms.DockStyle.Fill;
			TabPages.GenerateActionScripts = new TabPage("Generate Action Scripts");
			TabPages.GenerateActionScripts.Controls.Add(TabControls.GenerateActionScripts);
			MainTabControl.TabPages.Add(TabPages.GenerateActionScripts);
			//-------------------------------------------------
			TabControls.GenerateDataBaseScripts = new Controls.GenerateDataBaseScripts();
			TabControls.GenerateDataBaseScripts.Dock = System.Windows.Forms.DockStyle.Fill;
			TabPages.GenerateDataBaseScripts = new TabPage("Generate Database Scripts");
			TabPages.GenerateDataBaseScripts.Controls.Add(TabControls.GenerateDataBaseScripts);
			//MainTabControl.TabPages.Add(TabPages.GenerateDataBaseScripts);
			//-------------------------------------------------
			TabControls.ProcedureHeaders = new Controls.ProcedureHeaders();
			TabControls.ProcedureHeaders.Dock = System.Windows.Forms.DockStyle.Fill;
			TabPages.ProcedureHeaders = new TabPage("Procedure Headers");
			TabPages.ProcedureHeaders.Controls.Add(TabControls.ProcedureHeaders);
			//MainTabControl.TabPages.Add(TabPages.ProcedureHeaders);
			//-------------------------------------------------
			TabControls.XmlCommentsExtractTest = new Controls.XmlCommentsExtractTest();
			TabControls.XmlCommentsExtractTest.Dock = System.Windows.Forms.DockStyle.Fill;
			TabPages.XmlCommentsExtractTest = new TabPage("XML Comments Extract Test");
			TabPages.XmlCommentsExtractTest.Controls.Add(TabControls.XmlCommentsExtractTest);
			//MainTabControl.TabPages.Add(TabPages.XmlCommentsExtractTest);
		}

	}
}

By viewing downloads associated with this article you agree to the Terms of use and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

EJocys
Software Developer (Senior)
United Kingdom United Kingdom
Member
No Biography provided

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 29 Feb 2008
Article Copyright 2007 by EJocys
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid