This is a limitation of value types. You can get around it like this:
Dim d As typedc = DirectCast(Me.ActiveMdiChild, Form2).DC
'Now you can access d.Edytowalny
Note that as a value type, any changes you make to d won't affect the DC property on Form2. You'd have to change d and then assign it back to make another copy.