Well, there are a couple of ways. One way is you could create a global variable - this is the easiest way, but it's an Object-Oriented no-no. A better way is to store custom properties on the form(s). The only thing there is that you have to know - or find out - that the other form is really there before you can use the value.<br><br>For example if you had 2 forms, Form1 and Form2, you could create a custom property on Form1 called customval. Then from Form2 you could see it by referencing Form1.customval (or from Form1 as ThisForm.customval). Hope this helps - SK