I currently have two forms; Form1 and Form2. Form1 is used for my clickergame, where I have a double called "money". I need to access this value from Form2. I've set the double "money" public, and I have called form1 with:
Form1 mainform = new WindowsFormsApplication3.Form1();
Even though I've done this, I do not receive the value when i do mainform.money What could I possibly be doing wrong?