/Epi Info 7.1.4.0 Release - Web Enter Integration/Epi.Data.Office/Forms/ExcelNewFileDialog.cs

# · C# · 170 lines · 117 code · 21 blank · 32 comment · 3 complexity · cf535a5655de3266efeda17ce592b313 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Data.Common;
  6. using System.Data.OleDb;
  7. using System.Drawing;
  8. using System.Text;
  9. using System.Windows.Forms;
  10. using System.IO;
  11. namespace Epi.Data.Office.Forms
  12. {
  13. /// <summary>
  14. ///
  15. /// </summary>
  16. public partial class ExcelNewFileDialog : Form, IConnectionStringGui
  17. {
  18. /// <summary>
  19. /// Excel New File Dialog
  20. /// </summary>
  21. public ExcelNewFileDialog()
  22. {
  23. InitializeComponent();
  24. }
  25. #region IConnectionStringBuilder
  26. public virtual void SetDatabaseName(string databaseName) { }
  27. public virtual void SetServerName(string serverName) { }
  28. public virtual void SetUserName(string userName) { }
  29. public virtual void SetPassword(string password) { }
  30. /// <summary>
  31. /// Gets the connection string's description
  32. /// </summary>
  33. public string ConnectionStringDescription
  34. {
  35. get
  36. {
  37. return "MS Excel File: " + txtFileName.Text;
  38. }
  39. }
  40. public bool ShouldIgnoreNonExistance
  41. {
  42. set { }
  43. }
  44. private OleDbConnectionStringBuilder dbConnectionStringBuilder = new OleDbConnectionStringBuilder();
  45. /// <summary>
  46. /// Gets or sets the DbConnectionStringBuilder object
  47. /// </summary>
  48. public DbConnectionStringBuilder DbConnectionStringBuilder
  49. {
  50. get
  51. {
  52. return dbConnectionStringBuilder;
  53. }
  54. set
  55. {
  56. dbConnectionStringBuilder = (OleDbConnectionStringBuilder)value;
  57. }
  58. }
  59. /// <summary>
  60. /// Sets the preferred database name
  61. /// </summary>
  62. public string PreferredDatabaseName
  63. {
  64. get
  65. {
  66. return "";//txtFileName.Text = Path.Combine(Configuration.Directories.Project, value + ".mdb");
  67. }
  68. }
  69. /// <summary>
  70. /// Gets whether or not the user entered a password
  71. /// </summary>
  72. public bool UsesPassword
  73. {
  74. get
  75. {
  76. return false;
  77. }
  78. }
  79. #endregion
  80. #region Protected Methods
  81. /// <summary>
  82. /// Ok click for UI inheritance
  83. /// </summary>
  84. protected void OnOkClick()
  85. {
  86. if (File.Exists(this.txtFileName.Text))
  87. {
  88. MessageBox.Show("File already exists.");
  89. return;
  90. }
  91. else
  92. {
  93. //this.connectionString = ExcelWorkbook.BuildConnectionString(this.txtFileName.Text, true);
  94. this.dbConnectionStringBuilder.FileName = this.txtFileName.Text;
  95. this.DialogResult = DialogResult.OK;
  96. this.Close();
  97. }
  98. }
  99. /// <summary>
  100. /// Occurs when the file name has changed
  101. /// </summary>
  102. protected virtual void OnFileNameChanged()
  103. {
  104. btnOK.Enabled = !string.IsNullOrEmpty(txtFileName.Text);
  105. }
  106. /// <summary>
  107. /// Occurs when the Cancel button is clicked
  108. /// </summary>
  109. protected virtual void OnCancelClick()
  110. {
  111. //this.connectionString = null;
  112. this.dbConnectionStringBuilder.ConnectionString = null;
  113. this.DialogResult = DialogResult.Cancel;
  114. this.Close();
  115. }
  116. /// <summary>
  117. /// Occurs when the Browse button is clicked
  118. /// </summary>
  119. protected virtual void OnBrowseClick()
  120. {
  121. SaveFileDialog dialog = new SaveFileDialog();
  122. dialog.Filter = "Microsoft Excel Files (*.xls;*.xlsx)|*.xls;*.xlsx";
  123. DialogResult result = dialog.ShowDialog();
  124. if (result == DialogResult.OK)
  125. {
  126. txtFileName.Text = dialog.FileName;
  127. }
  128. }
  129. #endregion
  130. #region Event Handlers
  131. private void btnOK_Click(object sender, EventArgs e)
  132. {
  133. this.OnOkClick();
  134. }
  135. private void btnCancel_Click(object sender, EventArgs e)
  136. {
  137. this.OnCancelClick();
  138. }
  139. private void txtFileName_TextChanged(object sender, EventArgs e)
  140. {
  141. this.OnFileNameChanged();
  142. }
  143. private void btnBrowse_Click(object sender, EventArgs e)
  144. {
  145. this.OnBrowseClick();
  146. }
  147. #endregion
  148. }
  149. }