CreateUnoService Function [Runtime]/text/sbasic/shared/03131600.xhpSun Microsystems, Inc.UFI: added example and link, #i27908#
dedr: reviewedCreateUnoService functionCreateUnoService Function [Runtime]Instantiates a Uno service with the ProcessServiceManager.Syntax:oService = CreateUnoService( Uno service name )For a list of available services, see the API reference.Examples:oIntrospection = CreateUnoService( "com.sun.star.beans.Introspection" )filepicker;API serviceThe following code uses a service to open a file open dialog:Sub MainfName = FileOpenDialog ("Please select a file")print "file chosen: "+fNameEnd Subfunction FileOpenDialog(title as String) as Stringfilepicker = createUnoService("com.sun.star.ui.dialogs.FilePicker")filepicker.Title = titlefilepicker.execute()files = filepicker.getFiles()FileOpenDialog=files(0)End function