示例#1
0
 /// <remarks/>
 public void PrepareQueryAsync(DataSource DataSource, DataSetDefinition DataSet, object userState)
 {
     if ((this.PrepareQueryOperationCompleted == null))
     {
         this.PrepareQueryOperationCompleted = new System.Threading.SendOrPostCallback(this.OnPrepareQueryOperationCompleted);
     }
     this.InvokeAsync("PrepareQuery", new object[] {
                 DataSource,
                 DataSet}, this.PrepareQueryOperationCompleted, userState);
 }
示例#2
0
 /// <remarks/>
 public void PrepareQueryAsync(DataSource DataSource, DataSetDefinition DataSet)
 {
     this.PrepareQueryAsync(DataSource, DataSet, null);
 }
示例#3
0
 public DataSetDefinition PrepareQuery(DataSource DataSource, DataSetDefinition DataSet, out bool Changed)
 {
     object[] results = this.Invoke("PrepareQuery", new object[] {
                 DataSource,
                 DataSet});
     Changed = ((bool)(results[1]));
     return ((DataSetDefinition)(results[0]));
 }
示例#4
0
 /// <remarks/>
 public void SetReportDataSourcesAsync(string Report, DataSource[] DataSources, object userState)
 {
     if ((this.SetReportDataSourcesOperationCompleted == null))
     {
         this.SetReportDataSourcesOperationCompleted = new System.Threading.SendOrPostCallback(this.OnSetReportDataSourcesOperationCompleted);
     }
     this.InvokeAsync("SetReportDataSources", new object[] {
                 Report,
                 DataSources}, this.SetReportDataSourcesOperationCompleted, userState);
 }
示例#5
0
 /// <remarks/>
 public void SetReportDataSourcesAsync(string Report, DataSource[] DataSources)
 {
     this.SetReportDataSourcesAsync(Report, DataSources, null);
 }
示例#6
0
 public void SetReportDataSources(string Report, DataSource[] DataSources)
 {
     this.Invoke("SetReportDataSources", new object[] {
                 Report,
                 DataSources});
 }