Hi again...
Getting forward on my program and learning pretty quickly.

Now I just have a weird problem...
Lets say I have a 'Base Form' with a toolbar, Label_1, etc...
I have also a 'Main Form' which inherits from the 'Base Form'.
When I push a button in the 'Main Form' that is supposed to write a text for the Label_1 in the 'Base Form', nothing happens...
-->
Private Sub Button1_Click(
ByVal sender
As System.Object,
ByVal e
As System.EventArgs)
Handles Button1.Click
BaseForm.Label_1.Text = (
"JEAAAA")
End Sub
I have tried adding:
BaseForm.Update()
BaseForm.Validate()
...nothing seems to work....