I have one form (lets call form1) that does all the
calulations, and form2 that needs to display the
summary of the calculations. Now It worked just
fine before, but now they are child forms in the
MDI form and all form2 returns now are zero's. Is
there anyway to get calculation from one child form
to another

MDI help
DotNet_Student
Not sure I get what your saying but you can use form2's constructor to pass values to the form when its created
e.g.
Dim form2 As New Form2(myvalue)
form2.Show()
Nagu