ALL the global variables are getting lost but what ever Form I am currently on does not loose it's vars. I assume this is because the form has not lost scope yet. I thought that global variables held their settings until the project was closed?
The variables are global variables that I am using. They are declaired in a module and not a form module(class module?). This is an example of the code used to set the vars. This is just one out of all of them that are getting lost.
Option Compare Database
Option Explicit
Public gfnUserFullName As Variant
gfnUserFullName = DLookup("[FullName]", "Login_Verification", "Username= Forms!Login_Screen!UserName And Password= Forms!Login_Screen!Password_Entry")
Public Function FullUserName()
FullUserName = gfnUserFullName
End Function
Hope this helps. I could realy use the help on this one.