GlobalScope [Runtime]/text/sbasic/shared/03131900.xhpSun Microsystems, Inc.converted from old format - fpeGlobalScope functionlibrary systemsLibraryContainerBasicLibraries (LibraryContainer)DialogLibraries (LibraryContainer)GlobalScope [Runtime]Basic source code and dialogs are organized in a library system.The LibraryContainer contains librariesLibraries can contain modules and dialogsIn Basic:The LibraryContainer is called BasicLibraries.In dialogs:The LibraryContainer is called DialogLibraries.Both LibraryContainers exist in an application level and within every document. In the document Basic, the document's LibraryContainers are called automatically. If you want to call the global LibraryContainers from within a document, you must use the keyword GlobalScope.Syntax:GlobalScopeExample:Example in the document Basic' calling Dialog1 in the document library StandardoDlgDesc = DialogLibraries.Standard.Dialog1' calling Dialog2 in the application library Library1oDlgDesc = GlobalScope.DialogLibraries.Library1.Dialog2