BackgroundWorker
を使用してデータセットの進捗状況をExcelに変換して、ProgressBar
を取得しようとしています。問題は、作業がProgressBar
とは異なるクラスで実行されていて、私のループ内からworker.ReportProgress(...)
を呼び出すのが難しいことです。これは簡単なことですが、申し訳ありませんが、私はC#を初めて使っていて、これを一日中試してきました。あなたの助けが高く評価されます。バックグラウンドプログレスバーを持つワーカー
namespace CLT
{
public partial class GenBulkReceipts : UserControl
{
private void btnOpen_Click(object sender, EventArgs e)
{
Cursor.Current = Cursors.WaitCursor;
try
{
OpenFile();
}
Cursor.Current = Cursors.Default;
}
private void OpenFile()
{
if (dsEx1.Tables[0].Rows.Count > 0)
{
backgroundWorker1.RunWorkerAsync(dsEx1);
}
}
public void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
{
BackgroundWorker worker = sender as BackgroundWorker;
DataSet ImportDataSet = e.Argument as DataSet;
AccountsToBeImported = new BLLService().Get_AccountsToBeReceipted(ImportDataSet);
}
public void backgroundWorker1_ProgressChanged(object sender, ProgressChangedEventArgs e)
{
this.progressBar1.Value = e.ProgressPercentage;
}
// ...
}
}
namespace BLL
{
class GenBulkReceiptsBLL
{
public DataSet Get_AccountsToBeReceipted(DataSet dsImport)
{
DataSet dsReturn = AccountsDAL.QGenReceiptAccounts(0,0,"");//Kry Skoon DataSet wat ge-populate moet word
CLT.GenBulkReceipts pb = new CLT.GenBulkReceipts();
int TotalRows = dsImport.Tables[0].Rows.Count;
//pb.LoadProgressBar(TotalRows);
int calc = 1;
int ProgressPercentage;
foreach (DataRow dr in dsImport.Tables[0].Rows)
{
ProgressPercentage = (calc/TotalRows) * 100;
//This is the problem as I need to let my Progressbar progress here but I am not sure how
//pb.worker.ReportProgress(ProgressPercentage);
}
return dsReturn;
}
// ...
}
}
'btnOpen_Click(...)'メソッドにある 'try-catch'の' catch'節はどこにありますか? –
問題の解決につながる場合は、回答を受け入れるようにしてください。あなたが有用であると判明したものを投票してください。 –
ここにコードサンプルソータを作成するためにここに含めなかっただけです – user1171437