2

我有一个线程列表,通常有 3 个线程,每个线程引用一个与父控件通信以填充数据网格视图的 webbrowser 控件。我需要做的是,当用户单击 datagridviewButtonCell 中的按钮时,相应的数据将被发送回最初与主线程通信的子线程内的 webbrowser 控件。但是当我尝试这样做时,我收到以下错误消息

'不能使用已与其基础 RCW 分离的 COM 对象。

我的问题是我无法弄清楚如何引用相关的网络浏览器控件。我将不胜感激任何人可以给我的任何帮助。

使用的语言是 c# winforms .Net 4.0 目标

代码示例:

当用户单击主线程中的开始按钮时,将执行以下代码

私人无效开始提交(对象idx){

/*

新线程用于初始化从 webbrowser 控件继承的“myBrowser”的方法每个提交者对象都是一个名为“myBrowser”的自定义控件,其中包含有关对象功能的详细信息,例如:

*/

//index: 是一个整数值,代表线程id

整数索引 = (int)idx;

//submitters[index] 是 'myBrowser' 控件的一个实例

submitters[index] = new myBrowser();

//线程整数id

submitters[index]._ThreadNum = index;

// 命名约定使用“浏览器”+线程索引

submitters[index].Name = "browser" + index;

//在“myBrowser”类中设置列表以保存在主线程中找到的列表的副本

submitters[index]._dirs = dirLists[index];

// 抑制“myBrowser”控件中可能出现的 javascript 错误

submitters[index].ScriptErrorsSuppressed = true;

//执行事件处理程序

submitters[index].DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(DocumentCompleted);

//前进到datagridview中下一个未打开的地址导航该地址

//在“我的浏览器”控件中。

SetNextDir(submitters[index]);

}

私人无效btnStart_Click(对象发送者,EventArgs e){

  // used to fill list<string> for use in each thread.

  fillDirs();

  //connections is the list<Thread> holding the thread that have been opened
  //1 to 10 maximum

  for (int n = 0; n < (connections.Length); n++)

  {

     //initialise new thread to the StartSubmit method passing parameters

     connections[n] = new Thread(new ParameterizedThreadStart(StartSubmit));

     // naming convention used conn + the threadIndex ie: 'conn1' to 'conn10' 

     connections[n].Name = "conn" + n.ToString();

     // due to the webbrowser control needing to be ran in the single
     //apartment state

     connections[n].SetApartmentState(ApartmentState.STA);

     //start thread passing the threadIndex

     connections[n].Start(n);

  }

}

一旦“myBrowser”控件完全加载,我将表单数据插入到网页中的网页表单中,这些网页通过数据加载到 datagridview 中的行中。一旦用户将相关详细信息输入到行中的不同区域,然后可以单击 DataGridViewButtonCell 收集输入的数据,然后必须将其发送回在子线程上找到的相应“myBrowser”对象。

谢谢

4

2 回答 2

1

该错误表明包装 COM 对象的托管对象(可能是 WebBrowser 控件,但如果没有更多信息我无法确定)已被释放。这意味着托管对象仍然存在(它还没有被垃圾回收),但是已经调用了 IDisposable.Dispose() (它释放了 WebBrowser 控件,它是一个 COM 对象)。

顺便说一下,R​​CW 代表 Runtime Callable Wrapper。

确保您尝试通过其托管包装器引用的 COM 对象没有调用 IDisposable.Dispose(直接调用,或例如通过离开using块的范围)。

于 2012-11-12T19:48:16.627 回答
0

COM 对象是引用计数的(请参阅IUnknown)。obj->AddRef增加引用计数并obj->Release()减少它。当引用计数器达到零时,对象释放其内存并消失,这就是发生此错误时发生的情况。

Dispose不一定要调用Release- 对 COM 对象执行此操作的方法是调用Marshal.ReleaseComObject。然而,完成一个对象会释放它。确保您的 Web 浏览器控件保持在范围内,并确保它实际上没有在主 UI 线程以外的任何线程上被访问。

于 2012-11-12T19:56:37.730 回答