私は VS2008 を初めて使用し、あらゆる場所を探しましたが、問題の解決策が見つかりませんでした。コードは次のとおりです。
private void btnScan_Click(object sender, EventArgs e)
{
{
if (!msgfilter)
{
this.Enabled = false;
msgfilter = true;
Application.AddMessageFilter(this);
}
tw.Acquire(); <-- This is where the error shows
}
}