コード例 #1
0
        /// <summary>
        /// Loads the tblSupplier abstract class for the current selected record primary key.
        /// </summary>
        /// <returns>true if the call succeeded; false, otherwise.</returns>
        public bool RefreshCurrentRecord()
        {
            if (this.SelectionMode != System.Windows.Forms.SelectionMode.One)
            {
                throw new InvalidOperationException("SelectionMode property is not set to One. Hence, you cannot call this method.");
            }

            if (this.SelectedIndex == -1)
            {
                if (oAbstract_tblSupplier != null)
                {
                    oAbstract_tblSupplier.Reset();
                }
                return(false);
            }

            System.Data.SqlTypes.SqlGuid PK_Sup_GuidID = (System.Guid) this.SelectedValue;

            if (this.oAbstract_tblSupplier == null)
            {
                switch (this.LastKnownConnectionType)
                {
                case OlymarsDemo.DataClasses.ConnectionType.ConnectionString:
                    this.oAbstract_tblSupplier = new OlymarsDemo.AbstractClasses.Abstract_tblSupplier(this.connectionString);
                    break;

                case OlymarsDemo.DataClasses.ConnectionType.SqlConnection:
                    this.oAbstract_tblSupplier = new OlymarsDemo.AbstractClasses.Abstract_tblSupplier(this.sqlConnection);
                    break;
                }
            }

            return(this.oAbstract_tblSupplier.Refresh(PK_Sup_GuidID));
        }
コード例 #2
0
        /// <summary>
        /// Loads the tblSupplier abstract class for the current selected record primary key.
        /// </summary>
        /// <returns>true if the call succeeded; false, otherwise.</returns>
        public bool RefreshCurrentRecord()
        {
            if (this.SelectedIndex == -1)
            {
                if (oAbstract_tblSupplier != null)
                {
                    oAbstract_tblSupplier.Reset();
                }
                return(false);
            }

            System.Data.SqlTypes.SqlGuid PK_Sup_GuidID = new Guid(this.SelectedItem.Value);

            if (this.oAbstract_tblSupplier == null)
            {
                switch (this.LastKnownConnectionType)
                {
                case OlymarsDemo.DataClasses.ConnectionType.ConnectionString:
                    this.oAbstract_tblSupplier = new OlymarsDemo.AbstractClasses.Abstract_tblSupplier(this.connectionString);
                    break;

                case OlymarsDemo.DataClasses.ConnectionType.SqlConnection:
                    this.oAbstract_tblSupplier = new OlymarsDemo.AbstractClasses.Abstract_tblSupplier(this.sqlConnection);
                    break;
                }
            }

            return(this.oAbstract_tblSupplier.Refresh(PK_Sup_GuidID));
        }