Read/write global value list
The value key name
The group name, or the global group if omitted or an empty string
(no description)
1 2 3 4 | xf.GlobalVal( "CategoryID" ) = 23 xf.GlobalVal( "CategoryID" , "AnnualReport" ) = 23 Debug.Print xf.GlobalVal( "CategoryID" ) -> 23 Debug.Print xf.GlobalVal( "CategoryID" , "AnnualReport" ) -> 23 |