
12-02-2008, 7:21 AM
|
 |
VB.NET Forum Moderator
.NET Framework: .NET 3.5 (VS 2008)
|
|
Join Date: Dec 2005
Location: Norway
Age: 37
Posts: 10,303
Reputation: 1315
|
|
I think you are referencing the wrong Form1 instance, probably because you are using the default instance. Default form instances are thread specific so from other threads a new instance is created and returned to you. You should pass the form instance reference to the BotClass and use this to invoke.
|