IBM Lotus Symphony
|
Inštancuje službu Uno pomocou ProcessServiceManager.
oService = CreateUnoService( názov_služby Uno )
oIntrospection = CreateUnoService( "com.sun.star.beans.Introspection" )
Nasledujúci kód používa službu na otvorenie dialógového okna pre otvorenie súboru:
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