Hey. I have a module and in it i have the following code:
VB Code:
  1. Friend FU as new ForumUpdate

I have a label and a button with the same code below:

VB Code:
  1. If fu Is Nothing Then
  2.                 fu = New FormUpdate
  3.             End If

For some reason when I click on the button, it correctly makes a new forumUpdate. When I click on the label it makes a new forum update, but it is all grayed out and eventually locks up the program. This never used to happen in my program, but now it does. Any ideas?