/// <summary> /// Load or reloads a subset of the chosen resultset returned by the stored procedure. /// In order to successfully call this method, you need to call first the Initialize method. /// </summary> /// <param name="startRecord">The zero-based record number to start with.</param> /// <param name="maxRecords">The maximum number of records to retrieve.</param> public void RefreshData(int startRecord, int maxRecords) { this.CreateControl(); if (this.LastKnownConnectionType == Bob.DataClasses.ConnectionType.None) { throw new InvalidOperationException("You must call the 'Initialize' method before calling this method."); } this.param = new Params.spS_Customers_Full(); switch (this.LastKnownConnectionType) { case Bob.DataClasses.ConnectionType.ConnectionString: this.param.SetUpConnection(this.connectionString); break; case Bob.DataClasses.ConnectionType.SqlConnection: this.param.SetUpConnection(this.sqlConnection); break; } this.param.CommandTimeOut = this.commandTimeOut; if (!this.param_CustomerID.IsNull) { this.param.Param_CustomerID = this.param_CustomerID; } if (!this.param_TitleId.IsNull) { this.param.Param_TitleId = this.param_TitleId; } System.Data.DataSet DS = null; SPs.spS_Customers_Full SP = new SPs.spS_Customers_Full(); if (SP.Execute(ref this.param, ref DS, startRecord, maxRecords)) { this.bindingInProgress = true; this.DataSource = DS.Tables[this.tableName].DefaultView; this.bindingInProgress = false; } else { SP.Dispose(); throw new Bob.DataClasses.CustomException(this.param, "WinDataGridCustom_spS_Customers_Full", "RefreshData"); } }
/// <summary> /// Load or reloads a subset of the chosen resultset returned by the stored procedure. /// You can specify which record you want to be checked by default. /// </summary> /// <param name="PrimaryKey">Primary key of the record you want to be selected by default.</param> /// <param name="startRecord">The zero-based record number to start with.</param> /// <param name="maxRecords">The maximum number of records to retrieve.</param> public void RefreshData(object PrimaryKey, int startRecord, int maxRecords) { this.CreateControl(); if (this.LastKnownConnectionType == Bob.DataClasses.ConnectionType.None) { throw new InvalidOperationException("You must call the 'Initialize' method before calling this method."); } this.param = new Params.spS_Customers_Full(); switch (this.LastKnownConnectionType) { case Bob.DataClasses.ConnectionType.ConnectionString: this.param.SetUpConnection(this.connectionString); break; case Bob.DataClasses.ConnectionType.SqlConnection: this.param.SetUpConnection(this.sqlConnection); break; } this.param.CommandTimeOut = this.commandTimeOut; if (!this.param_CustomerID.IsNull) { this.param.Param_CustomerID = this.param_CustomerID; } if (!this.param_TitleId.IsNull) { this.param.Param_TitleId = this.param_TitleId; } System.Data.DataSet DS = null; SPs.spS_Customers_Full SP = new SPs.spS_Customers_Full(); if (SP.Execute(ref this.param, ref DS, startRecord, maxRecords)) { this.BeginUpdate(); this.bindingInProgress = true; this.DataSource = DS.Tables[this.tableName].DefaultView; this.ValueMember = this.valueMember; this.DisplayMember = this.displayMember; this.bindingInProgress = false; if (PrimaryKey != null) { this.SelectedValue = PrimaryKey; } else { base.OnSelectedIndexChanged(EventArgs.Empty); } this.EndUpdate(); SP.Dispose(); } else { SP.Dispose(); throw new Bob.DataClasses.CustomException(this.param, "WinListBoxCustom_spS_Customers_Full", "RefreshData"); } }