Esempio n. 1
0
        /// <summary>
        /// Load the Exisitng Branch record by getting the Primary Key 
        /// Pass a boolean to determine is the User Permission is read only for later use
        /// </summary>
        /// <param name="pLongID"></param>
        /// <param name="pBlnReadOnly"></param>
        public FrmBranch(long pLongID, Boolean pBlnReadOnly)
        {
            InitializeComponent();
            _branch = new Branch(pLongID); // create a new instance of the branch and pass it the Primary Key
            displayRecord(); // display the current record

            _blnReadOnly = pBlnReadOnly; // give the global boolean value the value of the parameter value
            _lngPKID = pLongID; // pass the parameter value of the Primary Key to the global Variable

            organizeFormForReadOnly(); // organize the form fields after we get the read only value
        }
Esempio n. 2
0
        Boolean _blnReadOnly; // A boolean to determine if the current user permission is read

        #endregion 

        #region Constructor 
        /// <summary>
        /// Create a new Branch record
        /// </summary>
        public FrmBranch()
        {
            InitializeComponent();
            _branch = new Branch(); // a new instance of the branch

        }
Esempio n. 3
0
 private void mnuDelete_Click(object sender, EventArgs e)
 {
     if (MessageBox.Show("Are you sure you want to delete the selected record?",
                      "Delete selected Record?", MessageBoxButtons.YesNo,
                      MessageBoxIcon.Question) == DialogResult.Yes)
     {
         _branch = new Branch(_lngPKID); // create a new istance of branch and pass it the primary key
         _blnActive = false; // set the current active state to false
         AssignData(); // assign the values of the fields in this forms to the class properties
         _branch.saveData(); // now save this current record
         this.Close(); // close after a succesfull save
     }
 }