hi,

I'm getting a Cross-thread operation not valid error when my label text changes - this is very strange because it was working up until yesterday

The only way I can get this to work is by applying the invoke

Code:
 Me.Invoke(Sub()
                          Me.lbl1.Text = "Editing file"
                      End Sub)
Is there a more simpler solution or will I have to invoke all my label coding?