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

# · C# · 274 lines · 209 code · 30 blank · 35 comment · 20 complexity · c62a85444fc01f6a9878a1506c033b29 MD5 · raw file

  1. #region Namespaces
  2. using Epi;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.ComponentModel;
  6. using System.Data;
  7. using System.Data.Common;
  8. using System.Data.OleDb;
  9. using System.Drawing;
  10. using System.Text;
  11. using System.Text.RegularExpressions;
  12. using System.Windows.Forms;
  13. using System.IO;
  14. #endregion
  15. namespace Epi.Data.Office.Forms
  16. {
  17. /// <summary>
  18. /// Connection string dialog for a database that does not exist yet
  19. /// </summary>
  20. public partial class AccessNewFileDialog : System.Windows.Forms.Form, IConnectionStringGui
  21. {
  22. #region Constructors
  23. /// <summary>
  24. /// Constructor
  25. /// </summary>
  26. public AccessNewFileDialog()
  27. {
  28. InitializeComponent();
  29. }
  30. #endregion
  31. #region Protected Methods
  32. /// <summary>
  33. /// Ok click for UI inheritance
  34. /// </summary>
  35. protected void OnOkClick()
  36. {
  37. this.dbConnectionStringBuilder.DataSource = this.txtFileName.Text;
  38. this.dbConnectionStringBuilder.Provider = "Microsoft.Jet.OLEDB.4.0";
  39. this.DialogResult = DialogResult.OK;
  40. this.Close();
  41. }
  42. /// <summary>
  43. /// Occurs when the file name has changed
  44. /// </summary>
  45. protected virtual void OnFileNameChanged()
  46. {
  47. btnOK.Enabled = !string.IsNullOrEmpty(txtFileName.Text);
  48. }
  49. /// <summary>
  50. /// Occurs when the Cancel button is clicked
  51. /// </summary>
  52. protected virtual void OnCancelClick()
  53. {
  54. this.dbConnectionStringBuilder.ConnectionString = string.Empty;
  55. this.DialogResult = DialogResult.Cancel;
  56. this.Close();
  57. }
  58. /// <summary>
  59. /// Occurs when the Browse button is clicked
  60. /// </summary>
  61. protected virtual void OnBrowseClick()
  62. {
  63. SaveFileDialog dialog = new SaveFileDialog();
  64. dialog.Filter = "Microsoft Access Files (*.mdb)|*.mdb";
  65. DialogResult result = dialog.ShowDialog();
  66. if (result == DialogResult.OK)
  67. {
  68. txtFileName.Text = dialog.FileName;
  69. }
  70. }
  71. #endregion
  72. #region IConnectionStringBuilder
  73. public virtual void SetDatabaseName(string databaseName) { }
  74. public virtual void SetServerName(string serverName) { }
  75. public virtual void SetUserName(string userName) { }
  76. public virtual void SetPassword(string password) { }
  77. /// <summary>
  78. /// Gets the connection string's description
  79. /// </summary>
  80. public string ConnectionStringDescription
  81. {
  82. get
  83. {
  84. return "MS Access File: " + txtFileName.Text;
  85. }
  86. }
  87. public bool ShouldIgnoreNonExistance
  88. {
  89. set { }
  90. }
  91. private OleDbConnectionStringBuilder dbConnectionStringBuilder = new OleDbConnectionStringBuilder();
  92. /// <summary>
  93. /// Gets or sets the DbConnectionStringBuilder object
  94. /// </summary>
  95. public DbConnectionStringBuilder DbConnectionStringBuilder
  96. {
  97. get
  98. {
  99. return dbConnectionStringBuilder;
  100. }
  101. set
  102. {
  103. dbConnectionStringBuilder = (OleDbConnectionStringBuilder)value;
  104. }
  105. }
  106. /// <summary>
  107. /// Sets the preferred database name
  108. /// </summary>
  109. public string PreferredDatabaseName
  110. {
  111. get
  112. {
  113. return txtFileName.Text; // Path.Combine(Configuration.Directories.Project, txtFileName.Text + ".mdb");
  114. }
  115. }
  116. /// <summary>
  117. /// Gets whether or not the user entered a password
  118. /// </summary>
  119. public bool UsesPassword
  120. {
  121. get
  122. {
  123. return false;
  124. }
  125. }
  126. #endregion
  127. #region Event Handlers
  128. private void btnOK_Click(object sender, EventArgs e)
  129. {
  130. bool valid = ValidateDatabaseName();
  131. if (valid)
  132. {
  133. this.OnOkClick();
  134. }
  135. else
  136. {
  137. txtFileName.Focus();
  138. }
  139. }
  140. private void btnCancel_Click(object sender, EventArgs e)
  141. {
  142. this.OnCancelClick();
  143. }
  144. private void txtFileName_TextChanged(object sender, EventArgs e)
  145. {
  146. this.OnFileNameChanged();
  147. }
  148. private void btnBrowse_Click(object sender, EventArgs e)
  149. {
  150. OnBrowseClick();
  151. }
  152. #endregion
  153. /// <summary>
  154. /// Validates the database name
  155. /// </summary>
  156. private bool ValidateDatabaseName()
  157. {
  158. string filename;
  159. string dir;
  160. bool valid = false;
  161. if (!string.IsNullOrEmpty(txtFileName.Text.Trim()))
  162. {
  163. dir = Path.GetDirectoryName(txtFileName.Text.Trim());
  164. filename = Path.GetFileName(txtFileName.Text.Trim());
  165. Regex dirRegex = new Regex(@"^(([a-zA-Z]\:)|(\\))(\\{1}|((\\{1})[^\\]([^#$/:*?<>""|]*))+)$");
  166. //Regex dirRegex = new Regex(@"[a-zA-Z]:(\\w+)*\\");
  167. if (!dirRegex.IsMatch(dir))
  168. {
  169. MessageBox.Show(this, "Invalid path. Please enter a valid path.", "Invalid path", MessageBoxButtons.OK, MessageBoxIcon.Information);
  170. valid = false;
  171. return valid;
  172. }
  173. if (string.IsNullOrEmpty(filename))
  174. {
  175. MessageBox.Show(this, "Blank database name. Please enter a database name with full path.", "Input Database Name", MessageBoxButtons.OK, MessageBoxIcon.Information);
  176. }
  177. else if (Path.HasExtension(filename))
  178. {
  179. if (!(Path.GetExtension(filename).ToLower() == ".mdb"))
  180. {
  181. MessageBox.Show(this, "Invalid database type. Please enter correct database extension name .mdb.", "Input Correct Extension Name", MessageBoxButtons.OK, MessageBoxIcon.Information);
  182. }
  183. else
  184. {
  185. valid = true;
  186. txtFileName.Text = Path.Combine(dir, filename);
  187. }
  188. }
  189. else
  190. {
  191. filename = filename + ".mdb";
  192. txtFileName.Text = Path.Combine(dir, filename);
  193. //txtFileName.Text = txtFileName.Text + ".mdb";
  194. valid = true;
  195. }
  196. if (valid == true)
  197. {
  198. Regex filenameRegex = new Regex(@"^[$#%A-Za-z0-9_-]*?\.mdb$");
  199. if (!filenameRegex.IsMatch(filename.ToLower()))
  200. {
  201. MessageBox.Show(this, "Invalid database name. Please enter a valid database name.", "Invalid database name", MessageBoxButtons.OK, MessageBoxIcon.Information);
  202. valid = false;
  203. }
  204. }
  205. if (valid == true)
  206. {
  207. if (string.IsNullOrEmpty(dir))
  208. {
  209. MessageBox.Show(this, "Please enter full path of database.", "Input Full Path", MessageBoxButtons.OK, MessageBoxIcon.Information);
  210. valid = false;
  211. }
  212. else
  213. {
  214. if (!(Directory.Exists(dir)))
  215. {
  216. DialogResult dr = MessageBox.Show(this, "The directory does not exist, do you want to create it : " + dir, "Create Directory", MessageBoxButtons.YesNo, MessageBoxIcon.Question );
  217. if (dr == DialogResult.Yes )
  218. {
  219. try
  220. {
  221. Directory.CreateDirectory(dir);
  222. }
  223. catch (Exception ex)
  224. {
  225. MessageBox.Show (ex.Message , "Create directory Error", MessageBoxButtons.OK );
  226. valid = false;
  227. }
  228. }
  229. else
  230. {
  231. valid = false;
  232. }
  233. }
  234. }
  235. }
  236. }
  237. else
  238. {
  239. MessageBox.Show(this ,"The database name cannot be blank. Please enter a database name with full path.", "Enter database name", MessageBoxButtons.OK, MessageBoxIcon.Information);
  240. }
  241. return valid;
  242. }
  243. }
  244. }