Funció CreateUnoService

Instancia un servei Uno amb ProcessServiceManager.

Sintaxi:

oService = CreateUnoService( Uno service name )

Per a una llista dels serveis disponibles, visiteu: api.libreoffice.org (en anglés).

Exemple :

Calling 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 Function

Exemple :

oIntrospection = CreateUnoService( "com.sun.star.beans.Introspection" )

El codi següent utilitza un servei per obrir un diàleg d'obertura de fitxers:


Sub Main
    fName = FileOpenDialog ("Seleccioneu un fitxer")
    Print "fitxer triat: "+fName
End Sub
 
Function 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

Ens cal la vostra ajuda!