'Passing Variables between Forms? Q. I need to know how to pass variables between two forms. A. There are two ways to accomplish this: 1. Declare your variables needed in both forms as global in a module. This will make them accessable for all. 2. The other way is to prefix a variable name with its form name: Form2.Label1.Caption = Form1.List1.List(List1.ListIndex) This example displays in Form2, Label1, the item selected in a Listbox on Form1. Thanks to: Ken Whitema