从另一个表单停止线程(VB.net)

时间:2014-01-17 22:30:49

标签: vb.net

我有2个表格。 在form2中我有1个线程。 我必须从form1停止它。

我试过了:

...
_Form1.threadname = stop()
...

但我会收到这个错误:

Error   1   ... threadname is not accessible in this context because it is 'Private'.

我该如何解决这个问题? 我不知道该公开什么。

1 个答案:

答案 0 :(得分:4)

看起来你有一个声明如下的字段

Private threadname As String

要从其他类访问它,需要FriendPublic

Public threadname As String