/// <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) { if (this.LastKnownConnectionType == OlymarsDemo.DataClasses.ConnectionType.None) { throw new InvalidOperationException("You must call the 'Initialize' method before calling this method."); } this.param = new Params.spS_tblProduct_Full(); switch (this.LastKnownConnectionType) { case OlymarsDemo.DataClasses.ConnectionType.ConnectionString: this.param.SetUpConnection(this.connectionString); break; case OlymarsDemo.DataClasses.ConnectionType.SqlConnection: this.param.SetUpConnection(this.sqlConnection); break; } this.param.CommandTimeOut = this.commandTimeOut; if (!this.param_Pro_GuidID.IsNull) { this.param.Param_Pro_GuidID = this.param_Pro_GuidID; } if (!this.param_Pro_LngCategoryID.IsNull) { this.param.Param_Pro_LngCategoryID = this.param_Pro_LngCategoryID; } System.Data.DataSet DS = null; SPs.spS_tblProduct_Full SP = new SPs.spS_tblProduct_Full(); if (SP.Execute(ref this.param, ref DS, startRecord, maxRecords)) { this.DataSource = DS.Tables[this.tableName].DefaultView; this.DataKeyField = "Pro_GuidID"; if (this.doDataBindAfterRefreshData) { this.DataBind(); } SP.Dispose(); } else { SP.Dispose(); throw new OlymarsDemo.DataClasses.CustomException(this.param, "WebDataGridCustom_spS_tblProduct_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="ArrayOf_PrimaryKeys">Primary keys of the records you want to be checked 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[] ArrayOf_PrimaryKeys, int startRecord, int maxRecords) { this.CreateControl(); if (this.LastKnownConnectionType == OlymarsDemo.DataClasses.ConnectionType.None) { throw new InvalidOperationException("You must call the 'Initialize' method before calling this method."); } this.param = new Params.spS_tblProduct_Full(); switch (this.LastKnownConnectionType) { case OlymarsDemo.DataClasses.ConnectionType.ConnectionString: this.param.SetUpConnection(this.connectionString); break; case OlymarsDemo.DataClasses.ConnectionType.SqlConnection: this.param.SetUpConnection(this.sqlConnection); break; } this.param.CommandTimeOut = this.commandTimeOut; if (!this.param_Pro_GuidID.IsNull) { this.param.Param_Pro_GuidID = this.param_Pro_GuidID; } if (!this.param_Pro_LngCategoryID.IsNull) { this.param.Param_Pro_LngCategoryID = this.param_Pro_LngCategoryID; } System.Data.DataSet DS = null; SPs.spS_tblProduct_Full SP = new SPs.spS_tblProduct_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 (ArrayOf_PrimaryKeys != null && ArrayOf_PrimaryKeys.Length > 0) { this.SetRecordsCheckState(ArrayOf_PrimaryKeys, System.Windows.Forms.CheckState.Checked); } else { base.OnSelectedIndexChanged(EventArgs.Empty); } this.EndUpdate(); SP.Dispose(); } else { SP.Dispose(); throw new OlymarsDemo.DataClasses.CustomException(this.param, "WinCheckedListBoxCustom_spS_tblProduct_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) { if (this.LastKnownConnectionType == OlymarsDemo.DataClasses.ConnectionType.None) { throw new InvalidOperationException("You must call the 'Initialize' method before calling this method."); } this.param = new Params.spS_tblProduct_Full(); switch (this.LastKnownConnectionType) { case OlymarsDemo.DataClasses.ConnectionType.ConnectionString: this.param.SetUpConnection(this.connectionString); break; case OlymarsDemo.DataClasses.ConnectionType.SqlConnection: this.param.SetUpConnection(this.sqlConnection); break; } this.param.CommandTimeOut = this.commandTimeOut; if (!this.param_Pro_GuidID.IsNull) { this.param.Param_Pro_GuidID = this.param_Pro_GuidID; } if (!this.param_Pro_LngCategoryID.IsNull) { this.param.Param_Pro_LngCategoryID = this.param_Pro_LngCategoryID; } System.Data.DataSet DS = null; SPs.spS_tblProduct_Full SP = new SPs.spS_tblProduct_Full(); if (SP.Execute(ref this.param, ref DS, startRecord, maxRecords)) { this.DataSource = DS.Tables[this.tableName].DefaultView; this.DataValueField = this.valueMember; this.DataTextField = this.displayMember; if (this.doDataBindAfterRefreshData) { this.DataBind(); } if (PrimaryKey != null) { System.Web.UI.WebControls.ListItem listItem = this.Items.FindByValue(Convert.ToString(PrimaryKey)); if (listItem != null) { listItem.Selected = true; } } } else { SP.Dispose(); throw new OlymarsDemo.DataClasses.CustomException(this.param, "WebListBoxCustom_spS_tblProduct_Full", "RefreshData"); } }