Is there a way to use a variable throughout an entire project. By declaring a variable as Public, it seems to be limited to the events associated with that particular form, not the project in total.

Also, I am running into problems trying to transfer the value of more thatn one variable to a module

Dim NumTeams as Integer
Dim NumBoards as Integer
NumTeams = Val(Textboix1.text)
NumBoards= Val(Textbox2.text)
Call Modsub(NumTeams,NumBoards)
That last line syntax workd with only one variable but not more than 1