CreateUnoService Function/text/sbasic/shared/03131600.xhpCreateUnoService functionAPI;FilePickerAPI;FunctionAccessCreateUnoService FunctionInstantiates a Uno service with the ProcessServiceManager.oService = CreateUnoService( Uno service name )For a list of available services, go to: https://api.libreoffice.org/docs/idl/ref/namespacecom_1_1sun_1_1star.htmlCalc functions;API ServiceCalling Calc functions in BasicCreateUnoService function; Calling Calc functionsCalling Calc functions in Basic:Function MyVlook(item, InRange As Object, FromCol As Integer) Dim oService As Object oService = createUnoService("com.sun.star.sheet.FunctionAccess") REM Always use the function English name MyVlook = oService.callFunction("VLOOKUP",Array(item, InRange, FromCol, True))End FunctionoIntrospection = CreateUnoService( "com.sun.star.beans.Introspection" )filepicker;API serviceThe following code uses a service to open a file open dialog:Sub Main fName = FileOpenDialog ("Please select a file") Print "file chosen: "+fNameEnd SubFunction FileOpenDialog(title As String) As String filepicker = createUnoService("com.sun.star.ui.dialogs.FilePicker") filepicker.Title = title filepicker.execute() files = filepicker.getFiles() FileOpenDialog=files(0)End Function