PageRenderTime 63ms CodeModel.GetById 26ms RepoModel.GetById 0ms app.codeStats 0ms

/Microsoft.Sdc.BiztalkDocumenter/Microsoft.Sdc.BiztalkDocumenter/Form1.cs

#
C# | 1843 lines | 1518 code | 72 blank | 253 comment | 41 complexity | bc589f287822d81686247dc9f5bd1a2f MD5 | raw file

Large files files are truncated, but you can click here to view the full file

  1. namespace Microsoft.Services.Tools.BiztalkDocumenter
  2. {
  3. using System;
  4. using System.Collections;
  5. using System.ComponentModel;
  6. using System.Configuration;
  7. using System.Drawing;
  8. using System.IO;
  9. using System.Reflection;
  10. using System.Windows.Forms;
  11. using Microsoft.Services.Tools.BiztalkDocumenter.Publishers;
  12. using Microsoft.Services.Tools.BiztalkDocumenter.Publishers.Word;
  13. using Microsoft.Services.Tools.BizTalkOM;
  14. using Microsoft.Services.Tools.BizTalkOM.Diagnostics;
  15. /// <summary>
  16. /// Summary description for Form1.
  17. /// </summary>
  18. public class Form1 : System.Windows.Forms.Form
  19. {
  20. #region private fields
  21. private static Documenter documenter = null;
  22. private static ExecutionMode executionMode = ExecutionMode.CommandLine;
  23. private static bool stop;
  24. private static bool showUsage = false;
  25. private static BizTalkInstallation bizTalkInstallation = new BizTalkInstallation();
  26. private System.ComponentModel.IContainer components;
  27. private System.Windows.Forms.Button btnBrowse;
  28. private System.Windows.Forms.Button button1;
  29. private System.Windows.Forms.Button button2;
  30. private System.Windows.Forms.CheckBox cbIncludeReferences;
  31. private System.Windows.Forms.CheckBox cbRulesConfig;
  32. private System.Windows.Forms.CheckBox cbShowOutput;
  33. private System.Windows.Forms.CheckedListBox clbApplications;
  34. private System.Windows.Forms.ComboBox comboBox1;
  35. private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
  36. private System.Windows.Forms.GroupBox grpBoxAdvanced;
  37. private System.Windows.Forms.ImageList imageList1;
  38. private System.Windows.Forms.Label label10;
  39. private System.Windows.Forms.Label label11;
  40. private System.Windows.Forms.Label label17;
  41. private System.Windows.Forms.Label label18;
  42. private System.Windows.Forms.Label label19;
  43. private System.Windows.Forms.Label label1;
  44. private System.Windows.Forms.Label label21;
  45. private System.Windows.Forms.Label label22;
  46. private System.Windows.Forms.Label label24;
  47. private System.Windows.Forms.Label label25;
  48. private System.Windows.Forms.Label label26;
  49. private System.Windows.Forms.Label label27;
  50. private System.Windows.Forms.Label label29;
  51. private System.Windows.Forms.Label label2;
  52. private System.Windows.Forms.Label label30;
  53. private System.Windows.Forms.Label label3;
  54. private System.Windows.Forms.Label label4;
  55. private System.Windows.Forms.Label label5;
  56. private System.Windows.Forms.Label label6;
  57. private System.Windows.Forms.Label label7;
  58. private System.Windows.Forms.Label label8;
  59. private System.Windows.Forms.Label label9;
  60. private System.Windows.Forms.LinkLabel linkLabel12;
  61. private System.Windows.Forms.LinkLabel linkLabel13;
  62. private System.Windows.Forms.LinkLabel linkLabel1;
  63. private System.Windows.Forms.LinkLabel linkLabel2;
  64. private System.Windows.Forms.LinkLabel linkLabel3;
  65. private System.Windows.Forms.LinkLabel linkLabel6;
  66. private System.Windows.Forms.LinkLabel linkLabel7;
  67. private System.Windows.Forms.LinkLabel linkLabel8;
  68. private System.Windows.Forms.LinkLabel linkLabel9;
  69. private System.Windows.Forms.OpenFileDialog dlgConfigFrameworkOpenFile;
  70. private System.Windows.Forms.Panel panel1;
  71. private System.Windows.Forms.Panel panel2;
  72. private System.Windows.Forms.Panel panel3;
  73. private System.Windows.Forms.Panel panel4;
  74. private System.Windows.Forms.Panel panel5;
  75. private System.Windows.Forms.Panel panel6;
  76. private System.Windows.Forms.PictureBox pictureBox1;
  77. private System.Windows.Forms.PictureBox pictureBox2;
  78. private System.Windows.Forms.PictureBox pictureBox3;
  79. private System.Windows.Forms.PictureBox pictureBox4;
  80. private System.Windows.Forms.ProgressBar progressBar1;
  81. private System.Windows.Forms.RadioButton radioAssembly;
  82. private System.Windows.Forms.RadioButton radioEntire;
  83. private System.Windows.Forms.SaveFileDialog dlgConfigFrameworkSaveFile;
  84. private System.Windows.Forms.TabControl tabControl1;
  85. private System.Windows.Forms.TabPage tabPage1;
  86. private System.Windows.Forms.TabPage tabPage2;
  87. private System.Windows.Forms.TabPage tabPage3;
  88. private System.Windows.Forms.TabPage tabPage4;
  89. private System.Windows.Forms.TextBox textBox1;
  90. private System.Windows.Forms.TextBox txtOutputDir;
  91. private System.Windows.Forms.TextBox txtReportTitle;
  92. private System.Windows.Forms.TextBox txtResourceFolder;
  93. private System.Windows.Forms.TextBox txtRulesDatabase;
  94. private System.Windows.Forms.TextBox txtRulesServer;
  95. private System.Windows.Forms.TextBox txtServerName;
  96. private System.Windows.Forms.TreeView tvOrchs;
  97. private SaveFileDialog dlgResultFileSave;
  98. private Microsoft.VisualBasic.PowerPacks.ShapeContainer shapeContainer1;
  99. private Microsoft.VisualBasic.PowerPacks.LineShape lineShape1;
  100. private TextBox txtConfigFrameworkFile;
  101. #endregion
  102. public Form1()
  103. {
  104. InitializeComponent();
  105. //comboBox1.SelectedIndex = 0;
  106. this.textBox1.Text = documenter.Database;
  107. this.txtServerName.Text = documenter.Server;
  108. this.txtOutputDir.Text = documenter.OutputDir;
  109. this.txtReportTitle.Text = documenter.ReportName;
  110. this.txtRulesServer.Text = documenter.RulesServer;
  111. this.txtRulesDatabase.Text = documenter.RulesDatabase;
  112. documenter.PercentageDocumentationComplete += new UpdatePercentageComplete(Documenter_PercentageDocumentationComplete);
  113. }
  114. /// <summary>
  115. /// The main entry point for the application.
  116. /// </summary>
  117. [STAThread]
  118. static void Main(string[] args)
  119. {
  120. TraceManager.SmartTrace.TraceIn();
  121. documenter = new Documenter();
  122. if (args.Length > 0)
  123. {
  124. ProcessArgs(args);
  125. // there may have been some overrides of the defaults (in the config)
  126. ProcessOverrides();
  127. }
  128. else
  129. {
  130. stop = true;
  131. executionMode = ExecutionMode.Interactive;
  132. }
  133. if (showUsage)
  134. {
  135. ShowUsage();
  136. return;
  137. }
  138. else
  139. {
  140. if (executionMode == ExecutionMode.Interactive)
  141. {
  142. documenter.SetDefaults();
  143. Application.Run(new Form1());
  144. }
  145. else
  146. {
  147. Form1 f1 = new Form1();
  148. f1.GenerateDocumentation();
  149. }
  150. }
  151. System.Diagnostics.Trace.WriteLine("Completed processing");
  152. return;
  153. }
  154. /// <summary>
  155. /// Clean up any resources being used.
  156. /// </summary>
  157. protected override void Dispose(bool disposing)
  158. {
  159. if (disposing)
  160. {
  161. if (components != null)
  162. {
  163. components.Dispose();
  164. }
  165. }
  166. base.Dispose(disposing);
  167. }
  168. #region Windows Form Designer generated code
  169. /// <summary>
  170. /// Required method for Designer support - do not modify
  171. /// the contents of this method with the code editor.
  172. /// </summary>
  173. private void InitializeComponent()
  174. {
  175. this.components = new System.ComponentModel.Container();
  176. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  177. this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
  178. this.panel2 = new System.Windows.Forms.Panel();
  179. this.tabControl1 = new System.Windows.Forms.TabControl();
  180. this.tabPage1 = new System.Windows.Forms.TabPage();
  181. this.label25 = new System.Windows.Forms.Label();
  182. this.button2 = new System.Windows.Forms.Button();
  183. this.label24 = new System.Windows.Forms.Label();
  184. this.txtConfigFrameworkFile = new System.Windows.Forms.TextBox();
  185. this.panel3 = new System.Windows.Forms.Panel();
  186. this.pictureBox1 = new System.Windows.Forms.PictureBox();
  187. this.label26 = new System.Windows.Forms.Label();
  188. this.label19 = new System.Windows.Forms.Label();
  189. this.txtRulesDatabase = new System.Windows.Forms.TextBox();
  190. this.txtRulesServer = new System.Windows.Forms.TextBox();
  191. this.label7 = new System.Windows.Forms.Label();
  192. this.label8 = new System.Windows.Forms.Label();
  193. this.cbRulesConfig = new System.Windows.Forms.CheckBox();
  194. this.textBox1 = new System.Windows.Forms.TextBox();
  195. this.txtServerName = new System.Windows.Forms.TextBox();
  196. this.label3 = new System.Windows.Forms.Label();
  197. this.label2 = new System.Windows.Forms.Label();
  198. this.tabPage2 = new System.Windows.Forms.TabPage();
  199. this.panel6 = new System.Windows.Forms.Panel();
  200. this.pictureBox2 = new System.Windows.Forms.PictureBox();
  201. this.label27 = new System.Windows.Forms.Label();
  202. this.label22 = new System.Windows.Forms.Label();
  203. this.grpBoxAdvanced = new System.Windows.Forms.GroupBox();
  204. this.cbIncludeReferences = new System.Windows.Forms.CheckBox();
  205. this.radioEntire = new System.Windows.Forms.RadioButton();
  206. this.clbApplications = new System.Windows.Forms.CheckedListBox();
  207. this.radioAssembly = new System.Windows.Forms.RadioButton();
  208. this.tabPage3 = new System.Windows.Forms.TabPage();
  209. this.panel5 = new System.Windows.Forms.Panel();
  210. this.pictureBox3 = new System.Windows.Forms.PictureBox();
  211. this.label29 = new System.Windows.Forms.Label();
  212. this.label21 = new System.Windows.Forms.Label();
  213. this.linkLabel9 = new System.Windows.Forms.LinkLabel();
  214. this.linkLabel8 = new System.Windows.Forms.LinkLabel();
  215. this.linkLabel7 = new System.Windows.Forms.LinkLabel();
  216. this.label11 = new System.Windows.Forms.Label();
  217. this.tvOrchs = new System.Windows.Forms.TreeView();
  218. this.tabPage4 = new System.Windows.Forms.TabPage();
  219. this.panel4 = new System.Windows.Forms.Panel();
  220. this.pictureBox4 = new System.Windows.Forms.PictureBox();
  221. this.label30 = new System.Windows.Forms.Label();
  222. this.label18 = new System.Windows.Forms.Label();
  223. this.label10 = new System.Windows.Forms.Label();
  224. this.label9 = new System.Windows.Forms.Label();
  225. this.txtResourceFolder = new System.Windows.Forms.TextBox();
  226. this.label5 = new System.Windows.Forms.Label();
  227. this.button1 = new System.Windows.Forms.Button();
  228. this.cbShowOutput = new System.Windows.Forms.CheckBox();
  229. this.txtReportTitle = new System.Windows.Forms.TextBox();
  230. this.label6 = new System.Windows.Forms.Label();
  231. this.label4 = new System.Windows.Forms.Label();
  232. this.comboBox1 = new System.Windows.Forms.ComboBox();
  233. this.txtOutputDir = new System.Windows.Forms.TextBox();
  234. this.label1 = new System.Windows.Forms.Label();
  235. this.btnBrowse = new System.Windows.Forms.Button();
  236. this.imageList1 = new System.Windows.Forms.ImageList(this.components);
  237. this.dlgConfigFrameworkOpenFile = new System.Windows.Forms.OpenFileDialog();
  238. this.dlgConfigFrameworkSaveFile = new System.Windows.Forms.SaveFileDialog();
  239. this.linkLabel1 = new System.Windows.Forms.LinkLabel();
  240. this.linkLabel2 = new System.Windows.Forms.LinkLabel();
  241. this.linkLabel3 = new System.Windows.Forms.LinkLabel();
  242. this.label17 = new System.Windows.Forms.Label();
  243. this.panel1 = new System.Windows.Forms.Panel();
  244. this.linkLabel6 = new System.Windows.Forms.LinkLabel();
  245. this.progressBar1 = new System.Windows.Forms.ProgressBar();
  246. this.linkLabel12 = new System.Windows.Forms.LinkLabel();
  247. this.linkLabel13 = new System.Windows.Forms.LinkLabel();
  248. this.dlgResultFileSave = new System.Windows.Forms.SaveFileDialog();
  249. this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
  250. this.lineShape1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
  251. this.panel2.SuspendLayout();
  252. this.tabControl1.SuspendLayout();
  253. this.tabPage1.SuspendLayout();
  254. this.panel3.SuspendLayout();
  255. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  256. this.tabPage2.SuspendLayout();
  257. this.panel6.SuspendLayout();
  258. ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
  259. this.grpBoxAdvanced.SuspendLayout();
  260. this.tabPage3.SuspendLayout();
  261. this.panel5.SuspendLayout();
  262. ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
  263. this.tabPage4.SuspendLayout();
  264. this.panel4.SuspendLayout();
  265. ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
  266. this.SuspendLayout();
  267. //
  268. // folderBrowserDialog1
  269. //
  270. this.folderBrowserDialog1.HelpRequest += new System.EventHandler(this.folderBrowserDialog1_HelpRequest);
  271. //
  272. // panel2
  273. //
  274. this.panel2.Controls.Add(this.tabControl1);
  275. this.panel2.Dock = System.Windows.Forms.DockStyle.Top;
  276. this.panel2.Location = new System.Drawing.Point(0, 0);
  277. this.panel2.Name = "panel2";
  278. this.panel2.Size = new System.Drawing.Size(667, 498);
  279. this.panel2.TabIndex = 23;
  280. //
  281. // tabControl1
  282. //
  283. this.tabControl1.Controls.Add(this.tabPage1);
  284. this.tabControl1.Controls.Add(this.tabPage2);
  285. this.tabControl1.Controls.Add(this.tabPage3);
  286. this.tabControl1.Controls.Add(this.tabPage4);
  287. this.tabControl1.Location = new System.Drawing.Point(-10, -28);
  288. this.tabControl1.Name = "tabControl1";
  289. this.tabControl1.SelectedIndex = 0;
  290. this.tabControl1.Size = new System.Drawing.Size(682, 536);
  291. this.tabControl1.TabIndex = 34;
  292. //
  293. // tabPage1
  294. //
  295. this.tabPage1.BackColor = System.Drawing.Color.White;
  296. this.tabPage1.Controls.Add(this.label25);
  297. this.tabPage1.Controls.Add(this.button2);
  298. this.tabPage1.Controls.Add(this.label24);
  299. this.tabPage1.Controls.Add(this.txtConfigFrameworkFile);
  300. this.tabPage1.Controls.Add(this.panel3);
  301. this.tabPage1.Controls.Add(this.txtRulesDatabase);
  302. this.tabPage1.Controls.Add(this.txtRulesServer);
  303. this.tabPage1.Controls.Add(this.label7);
  304. this.tabPage1.Controls.Add(this.label8);
  305. this.tabPage1.Controls.Add(this.cbRulesConfig);
  306. this.tabPage1.Controls.Add(this.textBox1);
  307. this.tabPage1.Controls.Add(this.txtServerName);
  308. this.tabPage1.Controls.Add(this.label3);
  309. this.tabPage1.Controls.Add(this.label2);
  310. this.tabPage1.Location = new System.Drawing.Point(4, 25);
  311. this.tabPage1.Name = "tabPage1";
  312. this.tabPage1.Size = new System.Drawing.Size(674, 507);
  313. this.tabPage1.TabIndex = 0;
  314. this.tabPage1.Text = "General";
  315. //
  316. // label25
  317. //
  318. this.label25.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  319. this.label25.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  320. this.label25.Location = new System.Drawing.Point(134, 405);
  321. this.label25.Name = "label25";
  322. this.label25.Size = new System.Drawing.Size(461, 37);
  323. this.label25.TabIndex = 59;
  324. this.label25.Text = "Optional: Include the ConfigFramework.exe output XML to generate a system configu" +
  325. "ration overview";
  326. //
  327. // button2
  328. //
  329. this.button2.BackColor = System.Drawing.Color.Silver;
  330. this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  331. this.button2.Location = new System.Drawing.Point(515, 460);
  332. this.button2.Name = "button2";
  333. this.button2.Size = new System.Drawing.Size(29, 22);
  334. this.button2.TabIndex = 58;
  335. this.button2.Text = "...";
  336. this.button2.UseVisualStyleBackColor = false;
  337. this.button2.Click += new System.EventHandler(this.button2_Click);
  338. //
  339. // label24
  340. //
  341. this.label24.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  342. this.label24.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  343. this.label24.Location = new System.Drawing.Point(134, 463);
  344. this.label24.Name = "label24";
  345. this.label24.Size = new System.Drawing.Size(192, 18);
  346. this.label24.TabIndex = 57;
  347. this.label24.Text = "ConfigFramework Output XML:";
  348. //
  349. // txtConfigFrameworkFile
  350. //
  351. this.txtConfigFrameworkFile.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  352. this.txtConfigFrameworkFile.Location = new System.Drawing.Point(326, 460);
  353. this.txtConfigFrameworkFile.Name = "txtConfigFrameworkFile";
  354. this.txtConfigFrameworkFile.Size = new System.Drawing.Size(183, 22);
  355. this.txtConfigFrameworkFile.TabIndex = 56;
  356. //
  357. // panel3
  358. //
  359. this.panel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(206)))), ((int)(((byte)(48)))), ((int)(((byte)(21)))));
  360. this.panel3.Controls.Add(this.pictureBox1);
  361. this.panel3.Controls.Add(this.label26);
  362. this.panel3.Controls.Add(this.label19);
  363. this.panel3.Dock = System.Windows.Forms.DockStyle.Top;
  364. this.panel3.Location = new System.Drawing.Point(0, 0);
  365. this.panel3.Name = "panel3";
  366. this.panel3.Size = new System.Drawing.Size(674, 46);
  367. this.panel3.TabIndex = 55;
  368. //
  369. // pictureBox1
  370. //
  371. this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
  372. this.pictureBox1.Location = new System.Drawing.Point(8, 1);
  373. this.pictureBox1.Name = "pictureBox1";
  374. this.pictureBox1.Size = new System.Drawing.Size(48, 44);
  375. this.pictureBox1.TabIndex = 3;
  376. this.pictureBox1.TabStop = false;
  377. //
  378. // label26
  379. //
  380. this.label26.ForeColor = System.Drawing.Color.White;
  381. this.label26.Location = new System.Drawing.Point(58, 28);
  382. this.label26.Name = "label26";
  383. this.label26.Size = new System.Drawing.Size(120, 26);
  384. this.label26.TabIndex = 2;
  385. this.label26.Text = "Server Options";
  386. //
  387. // label19
  388. //
  389. this.label19.BackColor = System.Drawing.Color.Transparent;
  390. this.label19.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  391. this.label19.ForeColor = System.Drawing.Color.White;
  392. this.label19.Location = new System.Drawing.Point(58, 7);
  393. this.label19.Name = "label19";
  394. this.label19.Size = new System.Drawing.Size(470, 26);
  395. this.label19.TabIndex = 1;
  396. this.label19.Text = "Microsoft Services BizTalk Documenter";
  397. //
  398. // txtRulesDatabase
  399. //
  400. this.txtRulesDatabase.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  401. this.txtRulesDatabase.Enabled = false;
  402. this.txtRulesDatabase.Location = new System.Drawing.Point(326, 258);
  403. this.txtRulesDatabase.Name = "txtRulesDatabase";
  404. this.txtRulesDatabase.Size = new System.Drawing.Size(183, 22);
  405. this.txtRulesDatabase.TabIndex = 52;
  406. //
  407. // txtRulesServer
  408. //
  409. this.txtRulesServer.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  410. this.txtRulesServer.Enabled = false;
  411. this.txtRulesServer.Location = new System.Drawing.Point(326, 231);
  412. this.txtRulesServer.Name = "txtRulesServer";
  413. this.txtRulesServer.Size = new System.Drawing.Size(183, 22);
  414. this.txtRulesServer.TabIndex = 49;
  415. //
  416. // label7
  417. //
  418. this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  419. this.label7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  420. this.label7.Location = new System.Drawing.Point(77, 261);
  421. this.label7.Name = "label7";
  422. this.label7.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
  423. this.label7.Size = new System.Drawing.Size(230, 18);
  424. this.label7.TabIndex = 51;
  425. this.label7.Text = "Rules Engine Database Name";
  426. //
  427. // label8
  428. //
  429. this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  430. this.label8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  431. this.label8.Location = new System.Drawing.Point(96, 233);
  432. this.label8.Name = "label8";
  433. this.label8.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
  434. this.label8.Size = new System.Drawing.Size(211, 19);
  435. this.label8.TabIndex = 50;
  436. this.label8.Text = "Rules Engine Server Name";
  437. //
  438. // cbRulesConfig
  439. //
  440. this.cbRulesConfig.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  441. this.cbRulesConfig.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  442. this.cbRulesConfig.Location = new System.Drawing.Point(96, 185);
  443. this.cbRulesConfig.Name = "cbRulesConfig";
  444. this.cbRulesConfig.Size = new System.Drawing.Size(288, 27);
  445. this.cbRulesConfig.TabIndex = 48;
  446. this.cbRulesConfig.Text = "Include Rules Engine Documentation";
  447. this.cbRulesConfig.CheckedChanged += new System.EventHandler(this.IncludeRulesChecked);
  448. //
  449. // textBox1
  450. //
  451. this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  452. this.textBox1.Location = new System.Drawing.Point(326, 138);
  453. this.textBox1.Name = "textBox1";
  454. this.textBox1.Size = new System.Drawing.Size(183, 22);
  455. this.textBox1.TabIndex = 40;
  456. //
  457. // txtServerName
  458. //
  459. this.txtServerName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  460. this.txtServerName.Location = new System.Drawing.Point(326, 111);
  461. this.txtServerName.Name = "txtServerName";
  462. this.txtServerName.Size = new System.Drawing.Size(183, 22);
  463. this.txtServerName.TabIndex = 34;
  464. //
  465. // label3
  466. //
  467. this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  468. this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  469. this.label3.Location = new System.Drawing.Point(77, 138);
  470. this.label3.Name = "label3";
  471. this.label3.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
  472. this.label3.Size = new System.Drawing.Size(230, 19);
  473. this.label3.TabIndex = 39;
  474. this.label3.Text = "Management Database Name";
  475. //
  476. // label2
  477. //
  478. this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  479. this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  480. this.label2.Location = new System.Drawing.Point(96, 111);
  481. this.label2.Name = "label2";
  482. this.label2.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
  483. this.label2.Size = new System.Drawing.Size(211, 18);
  484. this.label2.TabIndex = 38;
  485. this.label2.Text = "Management Server Name";
  486. //
  487. // tabPage2
  488. //
  489. this.tabPage2.BackColor = System.Drawing.Color.White;
  490. this.tabPage2.Controls.Add(this.panel6);
  491. this.tabPage2.Controls.Add(this.grpBoxAdvanced);
  492. this.tabPage2.Location = new System.Drawing.Point(4, 25);
  493. this.tabPage2.Name = "tabPage2";
  494. this.tabPage2.Size = new System.Drawing.Size(674, 507);
  495. this.tabPage2.TabIndex = 1;
  496. this.tabPage2.Text = "Advanced";
  497. //
  498. // panel6
  499. //
  500. this.panel6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(206)))), ((int)(((byte)(48)))), ((int)(((byte)(21)))));
  501. this.panel6.Controls.Add(this.pictureBox2);
  502. this.panel6.Controls.Add(this.label27);
  503. this.panel6.Controls.Add(this.label22);
  504. this.panel6.Dock = System.Windows.Forms.DockStyle.Top;
  505. this.panel6.Location = new System.Drawing.Point(0, 0);
  506. this.panel6.Name = "panel6";
  507. this.panel6.Size = new System.Drawing.Size(674, 46);
  508. this.panel6.TabIndex = 55;
  509. //
  510. // pictureBox2
  511. //
  512. this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
  513. this.pictureBox2.Location = new System.Drawing.Point(10, 1);
  514. this.pictureBox2.Name = "pictureBox2";
  515. this.pictureBox2.Size = new System.Drawing.Size(48, 44);
  516. this.pictureBox2.TabIndex = 4;
  517. this.pictureBox2.TabStop = false;
  518. //
  519. // label27
  520. //
  521. this.label27.ForeColor = System.Drawing.Color.White;
  522. this.label27.Location = new System.Drawing.Point(58, 28);
  523. this.label27.Name = "label27";
  524. this.label27.Size = new System.Drawing.Size(182, 26);
  525. this.label27.TabIndex = 3;
  526. this.label27.Text = "Select Documentation Type";
  527. //
  528. // label22
  529. //
  530. this.label22.BackColor = System.Drawing.Color.Transparent;
  531. this.label22.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  532. this.label22.ForeColor = System.Drawing.Color.White;
  533. this.label22.Location = new System.Drawing.Point(58, 7);
  534. this.label22.Name = "label22";
  535. this.label22.Size = new System.Drawing.Size(470, 26);
  536. this.label22.TabIndex = 1;
  537. this.label22.Text = "Microsoft Services BizTalk Documenter";
  538. //
  539. // grpBoxAdvanced
  540. //
  541. this.grpBoxAdvanced.Controls.Add(this.cbIncludeReferences);
  542. this.grpBoxAdvanced.Controls.Add(this.radioEntire);
  543. this.grpBoxAdvanced.Controls.Add(this.clbApplications);
  544. this.grpBoxAdvanced.Controls.Add(this.radioAssembly);
  545. this.grpBoxAdvanced.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  546. this.grpBoxAdvanced.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  547. this.grpBoxAdvanced.Location = new System.Drawing.Point(25, 65);
  548. this.grpBoxAdvanced.Name = "grpBoxAdvanced";
  549. this.grpBoxAdvanced.Size = new System.Drawing.Size(599, 421);
  550. this.grpBoxAdvanced.TabIndex = 32;
  551. this.grpBoxAdvanced.TabStop = false;
  552. this.grpBoxAdvanced.Text = "Options";
  553. //
  554. // cbIncludeReferences
  555. //
  556. this.cbIncludeReferences.AutoSize = true;
  557. this.cbIncludeReferences.Checked = true;
  558. this.cbIncludeReferences.CheckState = System.Windows.Forms.CheckState.Checked;
  559. this.cbIncludeReferences.Enabled = false;
  560. this.cbIncludeReferences.Location = new System.Drawing.Point(18, 385);
  561. this.cbIncludeReferences.Name = "cbIncludeReferences";
  562. this.cbIncludeReferences.Size = new System.Drawing.Size(224, 21);
  563. this.cbIncludeReferences.TabIndex = 4;
  564. this.cbIncludeReferences.Text = "Include referenced applications";
  565. //
  566. // radioEntire
  567. //
  568. this.radioEntire.Checked = true;
  569. this.radioEntire.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  570. this.radioEntire.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  571. this.radioEntire.Location = new System.Drawing.Point(19, 28);
  572. this.radioEntire.Name = "radioEntire";
  573. this.radioEntire.Size = new System.Drawing.Size(298, 27);
  574. this.radioEntire.TabIndex = 3;
  575. this.radioEntire.TabStop = true;
  576. this.radioEntire.Text = "Document Entire Configuration";
  577. //
  578. // clbApplications
  579. //
  580. this.clbApplications.BackColor = System.Drawing.SystemColors.InactiveBorder;
  581. this.clbApplications.CheckOnClick = true;
  582. this.clbApplications.Enabled = false;
  583. this.clbApplications.FormattingEnabled = true;
  584. this.clbApplications.HorizontalScrollbar = true;
  585. this.clbApplications.Location = new System.Drawing.Point(19, 90);
  586. this.clbApplications.Name = "clbApplications";
  587. this.clbApplications.Size = new System.Drawing.Size(567, 202);
  588. this.clbApplications.Sorted = true;
  589. this.clbApplications.TabIndex = 2;
  590. //
  591. // radioAssembly
  592. //
  593. this.radioAssembly.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  594. this.radioAssembly.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  595. this.radioAssembly.Location = new System.Drawing.Point(19, 53);
  596. this.radioAssembly.Name = "radioAssembly";
  597. this.radioAssembly.Size = new System.Drawing.Size(298, 28);
  598. this.radioAssembly.TabIndex = 0;
  599. this.radioAssembly.Text = "Specific BizTalk Application";
  600. this.radioAssembly.CheckedChanged += new System.EventHandler(this.AdvancedCheckedChanged);
  601. //
  602. // tabPage3
  603. //
  604. this.tabPage3.BackColor = System.Drawing.Color.White;
  605. this.tabPage3.Controls.Add(this.panel5);
  606. this.tabPage3.Controls.Add(this.linkLabel9);
  607. this.tabPage3.Controls.Add(this.linkLabel8);
  608. this.tabPage3.Controls.Add(this.linkLabel7);
  609. this.tabPage3.Controls.Add(this.label11);
  610. this.tabPage3.Controls.Add(this.tvOrchs);
  611. this.tabPage3.Location = new System.Drawing.Point(4, 25);
  612. this.tabPage3.Name = "tabPage3";
  613. this.tabPage3.Size = new System.Drawing.Size(674, 507);
  614. this.tabPage3.TabIndex = 2;
  615. this.tabPage3.Text = "Orchestration Info";
  616. //
  617. // panel5
  618. //
  619. this.panel5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(206)))), ((int)(((byte)(48)))), ((int)(((byte)(21)))));
  620. this.panel5.Controls.Add(this.pictureBox3);
  621. this.panel5.Controls.Add(this.label29);
  622. this.panel5.Controls.Add(this.label21);
  623. this.panel5.Dock = System.Windows.Forms.DockStyle.Top;
  624. this.panel5.Location = new System.Drawing.Point(0, 0);
  625. this.panel5.Name = "panel5";
  626. this.panel5.Size = new System.Drawing.Size(674, 46);
  627. this.panel5.TabIndex = 65;
  628. //
  629. // pictureBox3
  630. //
  631. this.pictureBox3.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image")));
  632. this.pictureBox3.Location = new System.Drawing.Point(10, 1);
  633. this.pictureBox3.Name = "pictureBox3";
  634. this.pictureBox3.Size = new System.Drawing.Size(48, 44);
  635. this.pictureBox3.TabIndex = 5;
  636. this.pictureBox3.TabStop = false;
  637. //
  638. // label29
  639. //
  640. this.label29.ForeColor = System.Drawing.Color.White;
  641. this.label29.Location = new System.Drawing.Point(58, 28);
  642. this.label29.Name = "label29";
  643. this.label29.Size = new System.Drawing.Size(182, 26);
  644. this.label29.TabIndex = 4;
  645. this.label29.Text = "Orchestration Info";
  646. //
  647. // label21
  648. //
  649. this.label21.BackColor = System.Drawing.Color.Transparent;
  650. this.label21.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  651. this.label21.ForeColor = System.Drawing.Color.White;
  652. this.label21.Location = new System.Drawing.Point(58, 7);
  653. this.label21.Name = "label21";
  654. this.label21.Size = new System.Drawing.Size(470, 26);
  655. this.label21.TabIndex = 1;
  656. this.label21.Text = "Microsoft Services BizTalk Documenter";
  657. //
  658. // linkLabel9
  659. //
  660. this.linkLabel9.ActiveLinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  661. this.linkLabel9.DisabledLinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  662. this.linkLabel9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  663. this.linkLabel9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  664. this.linkLabel9.Image = ((System.Drawing.Image)(resources.GetObject("linkLabel9.Image")));
  665. this.linkLabel9.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  666. this.linkLabel9.LinkArea = new System.Windows.Forms.LinkArea(0, 19);
  667. this.linkLabel9.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
  668. this.linkLabel9.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  669. this.linkLabel9.Location = new System.Drawing.Point(19, 138);
  670. this.linkLabel9.Name = "linkLabel9";
  671. this.linkLabel9.Size = new System.Drawing.Size(167, 27);
  672. this.linkLabel9.TabIndex = 64;
  673. this.linkLabel9.TabStop = true;
  674. this.linkLabel9.Text = "List Orchestrations";
  675. this.linkLabel9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  676. this.linkLabel9.VisitedLinkColor = System.Drawing.Color.RoyalBlue;
  677. this.linkLabel9.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel9_LinkClicked);
  678. //
  679. // linkLabel8
  680. //
  681. this.linkLabel8.ActiveLinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  682. this.linkLabel8.DisabledLinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  683. this.linkLabel8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  684. this.linkLabel8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  685. this.linkLabel8.Image = ((System.Drawing.Image)(resources.GetObject("linkLabel8.Image")));
  686. this.linkLabel8.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  687. this.linkLabel8.LinkArea = new System.Windows.Forms.LinkArea(0, 28);
  688. this.linkLabel8.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
  689. this.linkLabel8.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  690. this.linkLabel8.Location = new System.Drawing.Point(283, 425);
  691. this.linkLabel8.Name = "linkLabel8";
  692. this.linkLabel8.Size = new System.Drawing.Size(246, 26);
  693. this.linkLabel8.TabIndex = 63;
  694. this.linkLabel8.TabStop = true;
  695. this.linkLabel8.Text = "Save Selected Orchestrations";
  696. this.linkLabel8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  697. this.linkLabel8.VisitedLinkColor = System.Drawing.Color.RoyalBlue;
  698. this.linkLabel8.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel8_LinkClicked);
  699. //
  700. // linkLabel7
  701. //
  702. this.linkLabel7.ActiveLinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  703. this.linkLabel7.DisabledLinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  704. this.linkLabel7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  705. this.linkLabel7.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  706. this.linkLabel7.Image = ((System.Drawing.Image)(resources.GetObject("linkLabel7.Image")));
  707. this.linkLabel7.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  708. this.linkLabel7.LinkArea = new System.Windows.Forms.LinkArea(0, 26);
  709. this.linkLabel7.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
  710. this.linkLabel7.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  711. this.linkLabel7.Location = new System.Drawing.Point(24, 425);
  712. this.linkLabel7.Name = "linkLabel7";
  713. this.linkLabel7.Size = new System.Drawing.Size(224, 26);
  714. this.linkLabel7.TabIndex = 62;
  715. this.linkLabel7.TabStop = true;
  716. this.linkLabel7.Text = "View Current Orchestration";
  717. this.linkLabel7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  718. this.linkLabel7.VisitedLinkColor = System.Drawing.Color.RoyalBlue;
  719. this.linkLabel7.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel7_LinkClicked);
  720. //
  721. // label11
  722. //
  723. this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  724. this.label11.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  725. this.label11.Location = new System.Drawing.Point(29, 65);
  726. this.label11.Name = "label11";
  727. this.label11.Size = new System.Drawing.Size(595, 46);
  728. this.label11.TabIndex = 60;
  729. this.label11.Text = resources.GetString("label11.Text");
  730. this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  731. //
  732. // tvOrchs
  733. //
  734. this.tvOrchs.CheckBoxes = true;
  735. this.tvOrchs.Location = new System.Drawing.Point(19, 175);
  736. this.tvOrchs.Name = "tvOrchs";
  737. this.tvOrchs.Size = new System.Drawing.Size(605, 231);
  738. this.tvOrchs.Sorted = true;
  739. this.tvOrchs.TabIndex = 0;
  740. this.tvOrchs.AfterCheck += new System.Windows.Forms.TreeViewEventHandler(this.TvOrchsAfterCheck);
  741. this.tvOrchs.DoubleClick += new System.EventHandler(this.TvOrchsDoubleClick);
  742. //
  743. // tabPage4
  744. //
  745. this.tabPage4.BackColor = System.Drawing.Color.White;
  746. this.tabPage4.Controls.Add(this.panel4);
  747. this.tabPage4.Controls.Add(this.label10);
  748. this.tabPage4.Controls.Add(this.label9);
  749. this.tabPage4.Controls.Add(this.txtResourceFolder);
  750. this.tabPage4.Controls.Add(this.label5);
  751. this.tabPage4.Controls.Add(this.button1);
  752. this.tabPage4.Controls.Add(this.cbShowOutput);
  753. this.tabPage4.Controls.Add(this.txtReportTitle);
  754. this.tabPage4.Controls.Add(this.label6);
  755. this.tabPage4.Controls.Add(this.label4);
  756. this.tabPage4.Controls.Add(this.comboBox1);
  757. this.tabPage4.Controls.Add(this.txtOutputDir);
  758. this.tabPage4.Controls.Add(this.label1);
  759. this.tabPage4.Controls.Add(this.btnBrowse);
  760. this.tabPage4.Location = new System.Drawing.Point(4, 25);
  761. this.tabPage4.Name = "tabPage4";
  762. this.tabPage4.Size = new System.Drawing.Size(674, 507);
  763. this.tabPage4.TabIndex = 3;
  764. this.tabPage4.Text = "Output";
  765. //
  766. // panel4
  767. //
  768. this.panel4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(206)))), ((int)(((byte)(48)))), ((int)(((byte)(21)))));
  769. this.panel4.Controls.Add(this.pictureBox4);
  770. this.panel4.Controls.Add(this.label30);
  771. this.panel4.Controls.Add(this.label18);
  772. this.panel4.Dock = System.Windows.Forms.DockStyle.Top;
  773. this.panel4.Location = new System.Drawing.Point(0, 0);
  774. this.panel4.Name = "panel4";
  775. this.panel4.Size = new System.Drawing.Size(674, 46);
  776. this.panel4.TabIndex = 61;
  777. //
  778. // pictureBox4
  779. //
  780. this.pictureBox4.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image")));
  781. this.pictureBox4.Location = new System.Drawing.Point(10, 1);
  782. this.pictureBox4.Name = "pictureBox4";
  783. this.pictureBox4.Size = new System.Drawing.Size(48, 44);
  784. this.pictureBox4.TabIndex = 5;
  785. this.pictureBox4.TabStop = false;
  786. //
  787. // label30
  788. //
  789. this.label30.ForeColor = System.Drawing.Color.White;
  790. this.label30.Location = new System.Drawing.Point(58, 28);
  791. this.label30.Name = "label30";
  792. this.label30.Size = new System.Drawing.Size(182, 26);
  793. this.label30.TabIndex = 4;
  794. this.label30.Text = "Output Options";
  795. //
  796. // label18
  797. //
  798. this.label18.BackColor = System.Drawing.Color.Transparent;
  799. this.label18.Font = new System.Drawing.Font("Verdana", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  800. this.label18.ForeColor = System.Drawing.Color.White;
  801. this.label18.Location = new System.Drawing.Point(58, 7);
  802. this.label18.Name = "label18";
  803. this.label18.Size = new System.Drawing.Size(470, 26);
  804. this.label18.TabIndex = 1;
  805. this.label18.Text = "Microsoft Services BizTalk Documenter";
  806. this.label18.Click += new System.EventHandler(this.label18_Click);
  807. //
  808. // label10
  809. //
  810. this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  811. this.label10.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  812. this.label10.Location = new System.Drawing.Point(19, 323);
  813. this.label10.Name = "label10";
  814. this.label10.Size = new System.Drawing.Size(576, 55);
  815. this.label10.TabIndex = 60;
  816. this.label10.Text = "Any files and subdirectories contained within the resource folder will be compile" +
  817. "d into the CHM so that you can enhance your documentation by providing any furth" +
  818. "er html information";
  819. this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  820. //
  821. // label9
  822. //
  823. this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  824. this.label9.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  825. this.label9.Location = new System.Drawing.Point(48, 258);
  826. this.label9.Name = "label9";
  827. this.label9.Size = new System.Drawing.Size(528, 56);
  828. this.label9.TabIndex = 59;
  829. this.label9.Text = "If you are using the CHM output provider you may specify the name of a folder con" +
  830. "taining a \'titlePage.htm\' and any associated images to produce a custom look and" +
  831. " feel to your CHM title page.";
  832. this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  833. //
  834. // txtResourceFolder
  835. //
  836. this.txtResourceFolder.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  837. this.txtResourceFolder.Location = new System.Drawing.Point(221, 406);
  838. this.txtResourceFolder.Name = "txtResourceFolder";
  839. this.txtResourceFolder.Size = new System.Drawing.Size(249, 22);
  840. this.txtResourceFolder.TabIndex = 56;
  841. //
  842. // label5
  843. //
  844. this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  845. this.label5.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(96)))), ((int)(((byte)(119)))), ((int)(((byte)(153)))));
  846. this.label5.Location = new System.Drawing.Point(86, 408);
  847. this.label5.Name = "label5";
  848. this.label5.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
  849. this.label5.Size = new System.Drawing.Size(125, 19);
  850. this.label5.TabIndex = 58;
  851. this.label5.Text = "Resource Folder";
  852. //
  853. // button1
  854. //
  855. this.button1.BackColor = System.Drawing.Color.Silver;
  856. this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  857. this.button1.Location = new System.Drawing.Point(476, 406);
  858. this.button1.Name = "button1";
  859. this.button1.Size = new System.Drawing.Size(29, 22);
  860. this.button1.TabIndex = 57;
  861. this.button1.Text = "...";
  862. this.button1.UseVisualStyleBackColor = false;
  863. this.button1.Click += new System.EventHandler(this.btnBrowse2_Click

Large files files are truncated, but you can click here to view the full file