CreateUnoService Function

ProcessServiceManager āĻāĻ° āĻ¸āĻžāĻĨā§‡ āĻāĻ•āĻŸāĻŋ Uno āĻ¸āĻžāĻ°ā§āĻ­āĻŋāĻ¸ āĻĻā§āĻ°ā§āĻ¤ āĻ¸āĻŽā§āĻĒāĻ¨ā§āĻ¨ āĻ•āĻ°ā§‡āĨ¤

āĻ¸āĻŋāĻ¨āĻŸā§āĻ¯āĻžāĻ•ā§āĻ¸:


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.html

āĻ‰āĻĻāĻžāĻšāĻ°āĻŖ:

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

āĻ¨āĻŋāĻŽā§āĻ¨ā§‹āĻ•ā§āĻ¤ āĻ•ā§‹āĻĄ āĻāĻ•āĻŸāĻŋ āĻĢāĻžāĻ‡āĻ˛ āĻ–ā§‹āĻ˛āĻžāĻ° āĻĄāĻžāĻ¯āĻŧāĻžāĻ˛āĻ— āĻ–ā§āĻ˛āĻ¤ā§‡ āĻāĻ•āĻŸāĻŋ āĻĒāĻ°āĻŋāĻ¸ā§‡āĻŦāĻž āĻŦā§āĻ¯āĻŦāĻšāĻžāĻ° āĻ•āĻ°ā§‡:āĻ‰


Sub Main
    fName = FileOpenDialog ("Please select a file")
    print "file chosen: "+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

Please support us!