AccessControl.cs
Description du code
AccessControl.cs est un fichier du projet BiblioBrol.Ce fichier est situé dans /var/www/bin/sniplets/bibliobrol/src/.
Projet BiblioBrol :
Gestion de media en CSharp.
Pour plus d'infos, vous pouvez consulter la brève analyse.
Code source ou contenu du fichier
Code c# (AccessControl.cs) (226 lignes)
using System; using System.Text; using System.Windows.Forms; using be.gaudry.bibliobrol.config; using be.gaudry.bibliobrol.model.dao; using be.gaudry.bibliobrol.model.dao.config; using be.gaudry.bibliobrol.model.enums; using be.gaudry.model.enums; namespace be.gaudry.bibliobrol.view.controls.dao { public partial class AccessControl : UserControl, IDBControl { #region declarations and constructors private OpenFileDialog openDBDialog; private AccessConfig dbConfig; private bool allowSaving; public AccessControl() { allowSaving = false; InitializeComponent(); reset(); allowSaving = true; } #endregion #region private methods #region modify db path /// <summary> /// Uses an <code>OpenFileDialog</code> to select the db file to use. /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void dbBrowseBtn_Click(object sender, EventArgs e) { //openDBDialog.RestoreDirectory = true; openDBDialog.CheckFileExists = true; openDBDialog.Title = "Sélection de la base de données Access à utiliser..."; StringBuilder filterSB = new StringBuilder("Tous (*.bdb;*.mdb;*.accdb;*.bdb3;*bdb7)|*.bdb;*.mdb;*.accdb;*.bdb3;*bdb7"); filterSB.Append("|Bibliobrol DataBase (*.bdb)|*.bdb"); filterSB.Append("|Bibliobrol DataBase V.3 (*.bdb3)|*.bdb3"); filterSB.Append("|Bibliobrol DataBase V.7 (*.bdb7)|*.bdb7"); filterSB.Append("|Microsoft Office Access (*.mdb)|*.mdb"); openDBDialog.Filter = filterSB.ToString(); openDBDialog.InitialDirectory = dbConfig.getAdaptedDirectory();//Application.StartupPath; if (openDBDialog.ShowDialog(this) == DialogResult.OK) { dbPathLbl.Text = openDBDialog.FileName; toolTip1.SetToolTip(dbPathLbl, openDBDialog.FileName); openDBDialog.Dispose(); if (dbPathLbl.Text.EndsWith(".bdb7") || dbPathLbl.Text.EndsWith(".accdb")) { } else { } save(); } } /// <summary> /// Shows a <code>TextBox</code> to modify the path of the db file. /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void editBtn_Click(object sender, EventArgs e) { if (dbPathTB.Visible) { dbPathLbl.Visible = true; dbPathLbl.Text = dbPathTB.Text; this.toolTip1.SetToolTip(this.dbPathLbl, dbPathLbl.Text); dbPathTB.Visible = false; editBtn.Text = "Modifier"; //todo : use global::be.gaudry.Properties.Resources.brolEditBtn; editBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolEditBtn; dbBrowseBtn.Enabled = true; save(); } else { dbPathLbl.Visible = false; dbPathTB.Text = dbPathLbl.Text; dbPathTB.Visible = true; editBtn.Text = "Appliquer"; editBtn.Image = global::be.gaudry.bibliobrol.Properties.Resources.brolSaveBtn; dbBrowseBtn.Enabled = false; } } #endregion #region adapt display on resize private void AccessControl_Resize(object sender, EventArgs e) { showButtonsText( this.Size.Height > this.AutoScrollMinSize.Height && this.Size.Width > this.AutoScrollMinSize.Width ); } private void showButtonsText(bool showText) { if (showText) { editBtn.Text = "Modifier"; editBtn.Width = 80; dbBrowseBtn.Text = "Explorer"; dbBrowseBtn.Width = editBtn.Width; //dbBrowseBtn.Location.Offset(50, 0); //dbBrowseBtn.Location = new System.Drawing.Point(95, 45); } else { editBtn.Text = ""; editBtn.Width = 23; dbBrowseBtn.Text = ""; dbBrowseBtn.Width = editBtn.Width; //dbBrowseBtn.Location.Offset(-50, 0); //dbBrowseBtn.Location = new System.Drawing.Point(40, 45); } } #endregion /// <summary> /// Get an enum from the checked option. /// Used to set the driver to access to the db. /// </summary> /// <returns> /// ACCESS_VERSION Version of the selected Access file. /// </returns> private ACCESS_VERSION getSelectedVersion() { } private void version_CheckedChanged(object sender, EventArgs e) { save(); } #endregion #region IDBControl Members public void save() { if (!allowSaving) return; ACCESS_VERSION selectedVersion = getSelectedVersion(); // Test if values must be saved if (!dbPathTB.Text.Equals(dbConfig.getAdaptedPath()) || (selectedVersion != dbConfig.AccessVersion)) { //File.Exists doesn't throw exceptions if path is not valid, just return false bool validPath = System.IO.File.Exists(dbPathLbl.Text); if (validPath) { Config.savePersistenceType(PERSISTENCE_TYPE.Access); dbConfig.AccessVersion = selectedVersion; dbConfig.DBFileName = System.IO.Path.GetFileName(dbPathLbl.Text); dbConfig.DBPath = System.IO.Path.GetDirectoryName(dbPathLbl.Text); if (dbConfig.DBPath.Equals(Config.DataDirectory)) { dbConfig.DBPath = ""; } dbConfig.save(); DialogResult dr = MessageBox.Show( "Une base de données vient d'être sélectionnée (" + dbConfig.getAdaptedPath() + " [" + EnumHelper.GetDescription(selectedVersion) + "]).\nLes données actuellement utilisées par l'application sont probablement incohérentes avec la nouvelle db " + "et il est fortement recommandé de redémarrer l'application.\nRedémarrer maintenant ?", "Sélection de la base de données", MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1); if (DialogResult.Yes == dr) { Application.Restart(); } else { DAOFactory.resetDAO(); } } else { MessageBox.Show( String.Format("Impossible de trouver la base de données à l'emplacement {0}", dbPathLbl.Text), "Sélection de la base de données", MessageBoxButtons.OK, MessageBoxIcon.Error, MessageBoxDefaultButton.Button1); } } //else : no modification detected } /// <summary> /// Load data from the settings file, and update the view /// </summary> public void reset() { dbConfig = DAOFactory.Instance.getDBConfig() as AccessConfig; if (dbConfig == null) { } ACCESS_VERSION version = dbConfig.AccessVersion; switch (version) { } dbPathLbl.Text = dbConfig.getAdaptedPath(); } #endregion } }
Structure et Fichiers du projet
Afficher/masquer...Icône | Nom | Taille | Modification |
Pas de sous-répertoires. | |||
Icône | Nom | Taille | Modification |
| _ | Répertoire parent | 0 octets | 1731674456 15/11/2024 13:40:56 |
Utilisation de l'explorateur de code
- Navigation :
- Un clic sur une icône de répertoire ouvre ce répertoire pour en afficher les fichiers.
- Lorsque le répertoire en cours ne contient pas de sous-répertoires il est possible de remonter vers le répertoire parent.
- La structure de répertoires en treetable (tableau en forme d'arborescence) n'est plus possibledans cette version.
- Un clic sur une icône de fichier ouvre ce fichier pour en afficher le code avec la coloration syntaxique adaptée en fonction du langage principal utilisé dans le fichier.
- Affichage :
- Il est possible de trier les répertoires ou les fichiers selon certains critères (nom, taille, date).
- Actions :
- Les actions possible sur les fichiers dépendent de vos droits d'utilisateur sur le site. Veuillez activer le mode utilisateur pour activer les actions.
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 16/10/2009, zuletzt geändert 26/10/2018
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/cs-bibliobrol-source-rf-view/controls/dao//AccessControl.cs.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.