If just two forms, you can pass the values before unloading the first form :

VB Code:
  1. Load Form2
  2.  
  3. Form2.Check1.Value = Form1.Check1.Value
  4.  
  5. Unload Form1
  6.  
  7. Form2.Show

No additional declared variables, and no added module...